DeletionJobEdge
The Data Source edge object.
Learn more about pagination in GraphQL.
fields
cursor non-null String
The edge's cursor.
node non-null DeletionJob
The edge's node.
Deletion Job scheduled for a specific Data Pool.
The Deletion Job represents the asynchronous process of deleting data given some filters inside a Data Pool. It tracks the deletion process until it is finished, showing the progress and the outcome when it is finished.
node.id non-null ID
The Deletion Job's ID
node.createdAt non-null DateTime
The Deletion Job's creation date and time in UTC
node.createdBy non-null String
Who created the Deletion Job
node.modifiedAt non-null DateTime
The Deletion Job's last modification date and time in UTC
node.modifiedBy non-null String
Who last modified the Deletion Job
node.account non-null Account
Account to which the Deletion Job belongs
node.environment non-null Environment
Environment to which the Deletion Job belongs
node.dataPool non-null DataPool
The Data Pool whose records will be deleted by the Deletion Job
node.status non-null DeletionJobStatus
The current Deletion Job's status
CREATED
The Deletion Job was created, but is not yet being executed.
IN_PROGRESS
The Deletion Job is executing.
SUCCEEDED
The Deletion Job succeeded.
FAILED
The Deletion Job failed. Check the error message.
node.filters non-null array of Filter
The list of filters that will be used for deleting data. Data matching the filters will be deleted.
node.error nullable Error
The error that occurred while deleting data, if any.
node.progress non-null Float
The current progress of the Deletion Job, from 0.0 to 1.0.
node.startedAt nullable DateTime
The time at which the Deletion Job started.
node.succeededAt nullable DateTime
The time at which the Deletion Job succeeded.
node.failedAt nullable DateTime
The time at which the Deletion Job failed.