OBJECT

Event

link GraphQL Schema definition

1type Event {
2id: Int!
3
4objectType: EventObjectType!
5
6changeType: EventChangeType!
7
8# Usually ID, but a number in case of Order
9objectReference: Int64!
10
11# Arguments
12# format: ISO-8601
13createdAt(format: String = "Y-m-d\\TH:i:sP"): DateTimeTz!
14
15# Only applicable to some types of events, but also filterable
16#
17# Required permission: Store:read
18#
19# Store restrictions apply.
20store: Store
21
22# Only applicable to some types of events, but also filterable
23#
24# Required permission: Market:read
25#
26# Store restrictions apply.
27market: Market
28
29# Use fragments to get data of the target. For example,
30# object: Product
31# ... on Product {
32#
33# id
34#
35# name
36# }
37object: EventTarget
38
39}