OBJECT

AuditEvent

Type defining common audit event schema for a mutation

link GraphQL Schema definition

  • type AuditEvent implements Node {
  • # Creation time of an audit event Note: Expressed in UTC ISO-8601 timestamp
  • creationTime: DateTime!
  • # Optional details of an audit event
  • details: String
  • # Opaque global event ID
  • id: ID!
  • # Unique identifier for this specific mutation invocation which may have one or
  • # more audit events associated to it
  • mutationInstanceId: String!
  • # Optional status of an audit event set by mutation provider
  • status: String
  • }