stash/pkg/models/query.go
WithoutPants 704041d5e0
Add findFiles and findFile graphql queries (#5941)
* Add findFile and findFiles
* Add parent folder and zip file fields to file graphql types
* Add parent_folder, zip_file fields to Folder graphql type
* Add format to ImageFile type
* Add format filter fields to image/video file filters
2025-06-24 13:05:17 +10:00

11 lines
155 B
Go

package models
type QueryOptions struct {
FindFilter *FindFilterType
Count bool
}
type QueryResult[T comparable] struct {
IDs []T
Count int
}