INPUT_OBJECT

ModelStatusFilter

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

link GraphQL Schema definition

  • input ModelStatusFilter {
  • # Is null (if `true` is specified) or is not null (if `false` is specified).
  • isNull: Boolean
  • # Equal to the specified value.
  • equalTo: ModelStatus
  • # Not equal to the specified value.
  • notEqualTo: ModelStatus
  • # Not equal to the specified value, treating null like an ordinary value.
  • distinctFrom: ModelStatus
  • # Equal to the specified value, treating null like an ordinary value.
  • notDistinctFrom: ModelStatus
  • # Included in the specified list.
  • in: [ModelStatus!]
  • # Not included in the specified list.
  • notIn: [ModelStatus!]
  • # Less than the specified value.
  • lessThan: ModelStatus
  • # Less than or equal to the specified value.
  • lessThanOrEqualTo: ModelStatus
  • # Greater than the specified value.
  • greaterThan: ModelStatus
  • # Greater than or equal to the specified value.
  • greaterThanOrEqualTo: ModelStatus
  • }