INPUT_OBJECT

AddressFilter

Filter conditions for filtering associated property of the type Address!.

link GraphQL Schema definition

  • input AddressFilter {
  • # Specifies the exact value to match.
  • equalTo: Address
  • # Specifies a list of exact values to match.
  • in: [Address!]
  • # Specifies the exact value NOT to match.
  • notEqualTo: Address
  • # Specifies a list of exact values NOT to match.
  • notIn: [Address!]
  • # Specifies a prefix of the `Address` to match.
  • startsWith: AddressPrefix
  • }