1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
# Query: Get customer by id
Fetches a customer's data given an `id` using [GraphQL Variables](360024906591).
Replace `<BUSINESS_ID>` with a real business id and `<CUSTOMER_ID>` with a real customer id.
Operation
: ```graphql
query ($businessId: ID!, $customerId: ID!) {
business(id: $businessId) {
id
customer(id: $customerId) {
id
name
firstName
lastName
email
mobile
phone
fax
tollFree
website
address {
addressLine1
addressLine2
city
province {
code
name
}
country {
code
name
}
postalCode
}
shippingDetails {
name
phone
instructions
address {
addressLine1
addressLine2
city
province {
code
name
}
country {
code
name
}
postalCode
}
}
currency {
code
name
symbol
}
createdAt
modifiedAt
overdueAmount {
raw
value
}
outstandingAmount {
raw
value
}
}
}
}
```
Operation Variables
: ```graphql
{
"businessId": "<BUSINESS_ID>",
"customerId": "<CUSTOMER_ID>"
}
```