FieldChange
The entity field change.
type FieldChange {
changeType: ChangeType!
fieldPath: String
isArray: Boolean!
previousValues: [String]
newValues: [String]
}
Fields
FieldChange.changeType
● ChangeType!
non-null enum
Represents the type of change that performed on the field.
FieldChange.fieldPath
● String
scalar
Path to the changed field within the entity
FieldChange.isArray
● Boolean!
non-null scalar
Determines if field value is an array.
FieldChange.previousValues
● [String]
list scalar
Field value after the change.
FieldChange.newValues
● [String]
list scalar
Field value before the change.
Member Of
EntityChanges
object