OBJECT
Event
link GraphQL Schema definition
1 type Event { 2 Int! : 3 4 EventObjectType! : 5 6 EventChangeType! : 7 8 # Usually ID, but a number in case of Order 9 Int64! : 10 11 # Arguments 12 # format: ISO-8601 13 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. 20 Store : 21 22 # Only applicable to some types of events, but also filterable 23 # 24 # Required permission: Market:read 25 # 26 # Store restrictions apply. 27 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 # } 37 EventTarget : 38 39 }