INPUT_OBJECT
SearchInput
Search criteria for finding files based on various attributes
link GraphQL Schema definition
- input SearchInput {
- # Filename to search for (partial match supported)
- : String
- # MIME type to filter by (e.g., 'image/jpeg', 'application/pdf')
- : String
- # Minimum file size in bytes
- : Int
- # Maximum file size in bytes
- : Int
- # Start date for filtering by creation date (ISO 8601 format)
- : String
- # End date for filtering by creation date (ISO 8601 format)
- : String
- # Name of the user who uploaded the file
- : String
- }