Anchor to Event
Event
interface
Events chronicle resource activities such as the creation of an article, the fulfillment of an order, or the addition of a product.
Anchor to FieldsFields
- Anchor to appTitleapp•
Title The name of the app that created the event.
- Anchor to attributeToAppattribute•
To App Boolean!non-null Whether the event was created by an app.
- Anchor to attributeToUserattribute•
To User Boolean!non-null Whether the event was caused by an admin user.
- Anchor to createdAtcreated•
At DateTime! non-null The date and time when the event was created.
- Anchor to criticalAlertcritical•
Alert Boolean!non-null Whether the event is critical.
- •ID!non-null
A globally-unique ID.
- Anchor to messagemessage•Formatted
String! non-null Human readable text that describes the event.
Was this section helpful?
{
"appTitle": "",
"attributeToApp": "",
"attributeToUser": "",
"createdAt": "",
"criticalAlert": "",
"id": "",
"message": ""
}
{
"appTitle": "",
"attributeToApp": "",
"attributeToUser": "",
"createdAt": "",
"criticalAlert": "",
"id": "",
"message": ""
}
interface Event {
appTitle: String
attributeToApp: Boolean!
attributeToUser: Boolean!
createdAt: DateTime!
criticalAlert: Boolean!
id: ID!
message: FormattedString!
}