Skip to main content

CustomerEvent

History log of the customer.

type CustomerEvent implements Node {
id: ID!
date: DateTime
type: CustomerEventsEnum
user: User
message: String
count: Int
order: Order
orderLine: OrderLine
nauticalOrder: NauticalOrder
}

Fields

CustomerEvent.id ● ID! non-null scalar

The ID of the object

CustomerEvent.date ● DateTime scalar

Date when event happened at in ISO 8601 format.

CustomerEvent.type ● CustomerEventsEnum enum

Customer event type.

CustomerEvent.user ● User object

User who performed the action.

CustomerEvent.message ● String scalar

Content of the event.

CustomerEvent.count ● Int scalar

Number of objects concerned by the event.

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 an ID

Member Of

User object

Was this page helpful?