INPUT_OBJECT

NullableOperationResultStatusFilter

Provides filters for checking equality of the property value of nullable OperationResultStatus type.

link GraphQL Schema definition

  • input NullableOperationResultStatusFilter {
  • # Matches if the property value equals to this filter value.
  • equalTo: OperationResultStatus
  • # Matches if the property value does NOT equal to this filter value.
  • notEqualTo: OperationResultStatus
  • # Matches if the property value is contained in these filter values.
  • in: [OperationResultStatus!]
  • # Matches if the property value is NOT contained in these filter values.
  • notIn: [OperationResultStatus!]
  • # If the filter value is `true` then matches `null` property value. If the filter
  • # value is `false` then matches property values different from `null`.
  • isNull: Boolean
  • }