123456789101112131415161718192021222324 |
- # Basic events chronicle resource activities such as the creation of an article, the fulfillment of an order, or
- # the addition of a product.
- type BasicEvent implements Event&Node {
- # The name of the app that created the event.
- appTitle: String
- # Whether the event was created by an app.
- attributeToApp: Boolean!
- # Whether the event was caused by an admin user.
- attributeToUser: Boolean!
- # The date and time when the event was created.
- createdAt: DateTime!
- # Whether the event is critical.
- criticalAlert: Boolean!
- # A globally-unique identifier.
- id: ID!
- # Human readable text that describes the event.
- message: FormattedString!
- }
|