OrderAddress
No description
type OrderAddress {
id: Int!
orderId: Int!
createdAt: DateTime!
lastModifiedAt: DateTime!
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
code: String
notes: String
type: AddressType!
icp: YesNo!
url: String
name: String
}
Fields
OrderAddress.id
● Int!
non-null scalar
Address primary identifier
OrderAddress.orderId
● Int!
non-null scalar
The ID of the Order the address belongs to
OrderAddress.createdAt
● DateTime!
non-null scalar
Creation date
OrderAddress.lastModifiedAt
● DateTime!
non-null scalar
Last modified date
OrderAddress.firstName
● String
scalar
First name the address applies to
OrderAddress.middleName
● String
scalar
Middle name the address applies to
OrderAddress.lastName
● String
scalar
Last name the address applies to
OrderAddress.gender
● Gender!
non-null enum
Gender the address applies to
OrderAddress.company
● String
scalar
Company the address applies to
OrderAddress.street
● String!
non-null scalar
Address street
OrderAddress.number
● String
scalar
Address street number
OrderAddress.numberExtension
● String
scalar
Address street number extension
OrderAddress.postalCode
● String!
non-null scalar
Address postal code
OrderAddress.city
● String!
non-null scalar
Address city
OrderAddress.region
● String
scalar
Address region
OrderAddress.country
● String!
non-null scalar
Address country
OrderAddress.phone
● String
scalar
Fixed phone number that applies to this address [min: 6, max: 30]
OrderAddress.mobile
● String
scalar
Mobile phone number that applies to this address [min: 6, max: 30]
OrderAddress.email
● String
scalar
Email that applies to this address [valid email format needed]
OrderAddress.code
● String
scalar
Address code
OrderAddress.notes
● String
scalar
Address delivery notes
OrderAddress.type
● AddressType!
non-null enum
Address type [one of: delivery, invoice, home]
OrderAddress.icp
● YesNo!
non-null 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
OrderAddress.url
● String
scalar
Address company domain url
OrderAddress.name
● String
scalar
Address friendly descriptive name
Returned By
orderAddress
query ● orderAddresses
query ● orderAddressUpdate
mutation
Member Of
Order
object