INPUT_OBJECT

LocationInput

link GraphQL Schema definition

1input LocationInput {
2
3# Exactly one input field should be provided
4country: CountryInput!
5
6# Required if there are rules based on states
7state: CountryStateInput
8
9zipCode: String
10}