INPUT_OBJECT

NullableAddressArrayFilter

Provides filters for checking the filter value against array of the property values of nullable Address type.

link GraphQL Schema definition

  • input NullableAddressArrayFilter {
  • # Matches if the property values include this filter value.
  • includes: Address
  • # Matches if the property values do NOT include this filter value.
  • notIncludes: 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
  • }