CustomerEvent
History log of the customer.
type CustomerEvent implements Node {
id: ID!
date: DateTime!
type: CustomerEventsEnum!
message: String
count: Int
user: User
order: Order
orderLine: OrderLine
nauticalOrder: NauticalOrder
}
Fields
CustomerEvent.id ● ID! non-null scalar
The Globally Unique ID of this object
CustomerEvent.date ● DateTime! non-null scalar
Date when event happened at in ISO 8601 format.
CustomerEvent.type ● CustomerEventsEnum! non-null enum
Customer event type.
CustomerEvent.message ● String scalar
Content of the event.
CustomerEvent.count ● Int scalar
Number of objects concerned by the event.
CustomerEvent.user ● User object
User who performed the action.
CustomerEvent.order ● Order object
The concerned order.
CustomerEvent.orderLine ● OrderLine object
The concerned order line.
CustomerEvent.nauticalOrder ● NauticalOrder object
The concerned nautical order.
Interfaces
Node interface
An object with a Globally Unique ID
Member Of
User object