INPUT_OBJECT

DeploymentStatusFilter

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

link GraphQL Schema definition

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