95893927aa
Signed-off-by: Evgenii Stratonikov <evgeniy@nspcc.ru>
14 lines
317 B
Go
14 lines
317 B
Go
package storagegroup
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-sdk-go/object"
|
|
)
|
|
|
|
// SearchQuery returns search query to filter
|
|
// objects with storage group content.
|
|
func SearchQuery() object.SearchFilters {
|
|
fs := object.SearchFilters{}
|
|
fs.AddTypeFilter(object.MatchStringEqual, object.TypeStorageGroup)
|
|
|
|
return fs
|
|
}
|