INPUT_OBJECT

SupplierAddressInput

link GraphQL Schema definition

1input SupplierAddressInput {
2
3supplierName: String
4
5attention: String
6
7address1: String
8
9address2: String
10
11zipCode: String
12
13city: String
14
15stateOrProvince: String
16
17# Exactly one input field should be provided
18country: CountryInput
19
20email: String
21
22phoneNumber: String
23
24website: String
25}