Skip to content

AuditEventResourceChange

The details of a change associated with a audit event.

Fields

field · String! · required · The field that was changed.
value_after_change · String · The value after the change.
value_before_change · String · The value before the change.

Used By

Definition

"""
The details of a change associated with a audit event.
"""
type AuditEventResourceChange {
"""
The field that was changed.
"""
field: String!
"""
The value after the change.
"""
value_after_change: String
"""
The value before the change.
"""
value_before_change: String
}