INPUT_OBJECT

NullableBalanceUpdateCategoryFilter

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

link GraphQL Schema definition

  • input NullableBalanceUpdateCategoryFilter {
  • # Matches if the property value equals to this filter value.
  • equalTo: BalanceUpdateCategory
  • # Matches if the property value does NOT equal to this filter value.
  • notEqualTo: BalanceUpdateCategory
  • # Matches if the property value is contained in these filter values.
  • in: [BalanceUpdateCategory!]
  • # Matches if the property value is NOT contained in these filter values.
  • notIn: [BalanceUpdateCategory!]
  • # 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
  • }