Schema

Scalars

Enums

Objects

Input Objects

AddressDraft (INPUT OBJECT)

Input type for an address for an applicant.

Schema Definition

input AddressDraft {   # The city of the address.
city: String   # The country of the address.
country: String   # The county of the address.
county: String   # The first line of the address.
firstLine: String   # The name of the property (if applicable).
houseName: String   # The postcode of the address.
postcode: String   # The second line of the address.
secondLine: String   # The third line of the address.
thirdLine: String }