INPUT_OBJECT

NullableAddressFilter

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

link GraphQL Schema definition

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