Address
An address.
interface Address implements Node {
city: String!
companyName: String
country: String!
id: UUID!
name: Name
postalCode: String!
street1: String!
street2: String!
}
Fields
Address.city ● String! non-null scalar
The city part of the address
Address.companyName ● String scalar
The company name part of the address
Address.country ● String! non-null scalar
The country part of the address
Address.id ● UUID! non-null scalar
The ID of the node.
Address.name ● Name object
The name of the address
Address.postalCode ● String! non-null scalar
The postal code part of the address
Address.street1 ● String! non-null scalar
The first part of the street part of the address
Address.street2 ● String! non-null scalar
The second part of the street part of the address
Interfaces
Node interface
An object with an ID.
Returned By
address query
Member Of
Shipment object
Implemented By
UserAddress object ● VendorAddress object