INPUT_OBJECT

ActionStatusFilter

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

link GraphQL Schema definition

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