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