OBJECT

WholesaleOrderHistoryEntry

link GraphQL Schema definition

1type WholesaleOrderHistoryEntry implements OrderHistoryEntry {
2id: Int!
3
4# Arguments
5# format: ISO-8601
6createdAt(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
7
8type: OrderHistoryEntryType!
9
10dataJSON: String
11
12# Required permission: AdminUser:read
13adminUser: AdminUser
14
15# Email of the user when the user logged in with an organization (SSO).
16# In this case, `adminUser` will represent the organization, `organizationUserEmail` will show a real user email
17organizationUserEmail: String
18
19# Required permission: none
20#
21# Store restrictions apply.
22order: WholesaleOrder!
23
24# Required permission: Buyer:read
25#
26# Store restrictions apply.
27buyer: Buyer
28
29}