AuditEvent
An audit event.
Fields
acting_user
· User
· The user who caused this event. resource_changes
· [AuditEventResourceChange!]
· The set of changes associated with the event resource_name
· AuditEventResourceName!
· required · The name of the resource that was affected by this event. Used By
Definition
"""An audit event."""type AuditEvent { """ The user who caused this event. """ acting_user: User
""" Pagination cursor """ cursor: Cursor!
""" Date and time that the event happened. """ occurred_at: ISO8601DateTime!
""" The set of changes associated with the event """ resource_changes: [AuditEventResourceChange!]
""" The ID of the resource that was affected by the event. """ resource_id: ID!
""" The name of the resource that was affected by this event. """ resource_name: AuditEventResourceName!
""" The type of the event. """ type: AuditEventType!}