CustomerEvent Object
History log of the customer.
type CustomerEvent implements Node {
id: ID!
date: DateTime
type: CustomerEventsEnum
user: User
app: App
message: String
count: Int
order: Order
orderLine: OrderLine
}
Fields
id ● ID!
The ID of the customer event.
date ● DateTime
Date when event happened at in ISO 8601 format.
type ● CustomerEventsEnum
Customer event type.
user ● User
User who performed the action.
app ● App
App that performed the action.
message ● String
Content of the event.
count ● Int
Number of objects concerned by the event.
order ● Order
The concerned order.
orderLine ● OrderLine
The concerned order line.
Interfaces
Node
An object with an ID
Member Of
User object