INPUT_OBJECT

OrganizationFilter

A filter to be used against Organization object types. All fields are combined with a logical ‘and.’

link GraphQL Schema definition

  • input OrganizationFilter {
  • # Filter by the object’s `id` field.
  • id: UUIDFilter
  • # Filter by the object’s `name` field.
  • name: StringFilter
  • # Filter by the object’s `storageAccountUrl` field.
  • storageAccountUrl: StringFilter
  • # Filter by the object’s `storageAccountKey` field.
  • storageAccountKey: StringFilter
  • # Filter by the object’s `storageAccountSecret` field.
  • storageAccountSecret: StringFilter
  • # Filter by the object’s `storageAccountBucket` field.
  • storageAccountBucket: StringFilter
  • # Filter by the object’s `itemApiUrl` field.
  • itemApiUrl: StringFilter
  • # Filter by the object’s `autoLabelImages` field.
  • autoLabelImages: BooleanFilter
  • # Filter by the object’s `address` field.
  • address: StringFilter
  • # Filter by the object’s `email` field.
  • email: StringFilter
  • # Filter by the object’s `phoneNumber` field.
  • phoneNumber: StringFilter
  • # Checks for all expressions in this list.
  • and: [OrganizationFilter!]
  • # Checks for any expressions in this list.
  • or: [OrganizationFilter!]
  • # Negates the expression.
  • not: OrganizationFilter
  • }