Skip to content

LocationInputs

Payload for a location

Fields

city · String · The city
country · String · The country code
id · ID · The ID of the location
line1 · String · The first line of the address
line2 · String · The second line of the address
name · String · The graphql_name of the location
state · String · The state
zip · String · The zip code

Used By

Definition

"""
Payload for a location
"""
input LocationInputs {
"""
The city
"""
city: String
"""
The country code
"""
country: String
"""
The ID of the location
"""
id: ID
"""
The first line of the address
"""
line1: String
"""
The second line of the address
"""
line2: String
"""
The graphql_name of the location
"""
name: String
"""
The state
"""
state: String
"""
The zip code
"""
zip: String
}