Skip to main content

Address

No description

type Address {
id: Int!
firstName: String
middleName: String
lastName: String
gender: Gender
company: String
street: String!
number: String
numberExtension: String
postalCode: String!
city: String!
region: String
country: String!
phone: String
mobile: String
email: String
fax: String
code: String
notes: String
isDefault: YesNo!
type: AddressType!
icp: YesNo
url: String
active: YesNo
name: String
}

Fields

Address.id ● Int! non-null scalar

Address primary identifier

Address.firstName ● String scalar

First name the address applies to

Address.middleName ● String scalar

Middle name the address applies to

Address.lastName ● String scalar

Last name the address applies to

Address.gender ● Gender enum

Address gender

Address.company ● String scalar

Company the address applies to

Address.street ● String! non-null scalar

Address street

Address.number ● String scalar

Address street number

Address.numberExtension ● String scalar

Address street number extension

Address.postalCode ● String! non-null scalar

Address postal code

Address.city ● String! non-null scalar

Address city

Address.region ● String scalar

Address region

Address.country ● String! non-null scalar

Address country

Address.phone ● String scalar

Fixed phone number that applies to this address [min: 6, max: 30]

Address.mobile ● String scalar

Mobile phone number that applies to this address [min: 6, max: 30]

Address.email ● String scalar

Email that applies to this address [valid email format needed]

Address.fax ● String scalar

Fax number that applies to this address [min: 6, max: 30]

Address.code ● String scalar

Address code

Address.notes ● String scalar

Address delivery notes

Address.isDefault ● YesNo! non-null enum

Indicates whether the address is default for its type

Address.type ● AddressType! non-null enum

Address type [one of 'home', 'delivery', 'invoice']

Address.icp ● YesNo enum

ICP address field defines whether tax should be applied to an order if the address is selected as a delivery address. Used when shipping b2b order abroad

Address.url ● String scalar

Address company domain url

Address.active ● YesNo enum

Indicates whether the address is active

Address.name ● String scalar

Address friendly descriptive name

Returned By

addressesByCompanyId query ● addressesByCustomerId query ● addressesByOrderId query ● addressesByUserId query ● companyAddressCreate mutation ● companyAddressUpdate mutation ● customerAddressCreate mutation ● customerAddressUpdate mutation ● userAddressCreate mutation ● userAddressUpdate mutation

Member Of

Company object ● Customer object ● Order object ● User object