type Query struct {
...
// MatchGlob is a glob pattern used to filter results (for example, foo*bar). See
// https://cloud.google.com/storage/docs/json_api/v1/objects/list#list-object-glob
// for syntax details. When Delimiter is set in conjunction with MatchGlob,
// it must be set to /.
MatchGlob [string](https://pkg.go.dev/builtin#string)
// contains filtered or unexported fields
}
Unfortunately, fake server doesn't support this kind of queries.
google cloud storage package provides a nifty way to select objects using the glob expressions .
Unfortunately, fake server doesn't support this kind of queries.
I've verified by adding couple more test cases for listing objects which are actually failing (0001-add-tests-for-MatchGlob-failing.patch )
So it would be nice if this functionality could be added in further releases