Skip to content

AuditEvent

An audit event.

Fields

acting_user · User · The user who caused this event.
cursor · Cursor! · required · Pagination cursor
occurred_at · ISO8601DateTime! · required · Date and time that the event happened.
resource_changes · [AuditEventResourceChange!] · The set of changes associated with the event
resource_id · ID! · required · The ID of the resource that was affected by the event.
resource_name · AuditEventResourceName! · required · The name of the resource that was affected by this event.
type · AuditEventType! · required · The type of the 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!
}