Skip to main content
Version: 3.x

CustomerEvent

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

CustomerEvent.id ● ID! non-null scalar

The ID of the customer event.

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.app ● App object

App that 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.

Interfaces

Node interface

An object with an ID

Member of

User object


Was this page helpful?