event.graphql 692 B

123456789101112131415161718192021222324
  1. # Basic events chronicle resource activities such as the creation of an article, the fulfillment of an order, or
  2. # the addition of a product.
  3. type BasicEvent implements Event&Node {
  4. # The name of the app that created the event.
  5. appTitle: String
  6. # Whether the event was created by an app.
  7. attributeToApp: Boolean!
  8. # Whether the event was caused by an admin user.
  9. attributeToUser: Boolean!
  10. # The date and time when the event was created.
  11. createdAt: DateTime!
  12. # Whether the event is critical.
  13. criticalAlert: Boolean!
  14. # A globally-unique identifier.
  15. id: ID!
  16. # Human readable text that describes the event.
  17. message: FormattedString!
  18. }