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)
  • filename: String
  • # MIME type to filter by (e.g., 'image/jpeg', 'application/pdf')
  • mimeType: String
  • # Minimum file size in bytes
  • minSize: Int
  • # Maximum file size in bytes
  • maxSize: Int
  • # Start date for filtering by creation date (ISO 8601 format)
  • startDate: String
  • # End date for filtering by creation date (ISO 8601 format)
  • endDate: String
  • # Name of the user who uploaded the file
  • uploaderName: String
  • }