Skip to content

AddressInput

The AddressInput object is the GraphQL data type of the input to our address query. It provides us with all the details we need regarding the address of a home.

input AddressInput {
street1: String!
street2: String
city: String!
state: String!
postalCode: String!
}
FieldTypeDescription
street1String!Street name of the address
street2StringExtension of the street name
cityString!Name of the city the address belongs to
stateString!Name of the state the address belongs to (two-letter abbreviation)
postalCodeString!Postal code of the address