INPUT_OBJECT

AddressBookEntryCreateInput

link GraphQL Schema definition

1input AddressBookEntryCreateInput {
2
3# Exactly one input field should be provided
4account: AccountInput!
5
6name: String!
7
8websiteUrl: String
9
10address: AddressBookAddressInput
11
12carrierInformation: CarrierInformationInput
13
14# Assign an external ID to reference this object by it later
15externalId: String
16}

link Required by