Skip to main content

deletionJob

This query returns the Deletion Job specified by the given ID.

The Deletion Job represents the asynchronous process of deleting data given some filters inside a Data Pool.

Arguments

  • id required ID


Returns

Nullable DeletionJob

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.

  • deletionJob.id non-null ID

    The Deletion Job's ID

  • deletionJob.createdAt non-null DateTime

    The Deletion Job's creation date and time in UTC

  • deletionJob.createdBy non-null String

    Who created the Deletion Job

  • deletionJob.modifiedAt non-null DateTime

    The Deletion Job's last modification date and time in UTC

  • deletionJob.modifiedBy non-null String

    Who last modified the Deletion Job

  • deletionJob.account non-null Account

    Account to which the Deletion Job belongs

  • deletionJob.environment non-null Environment

    Environment to which the Deletion Job belongs

  • deletionJob.dataPool non-null DataPool

    The Data Pool whose records will be deleted by the Deletion Job

  • deletionJob.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.

  • deletionJob.filters non-null array of Filter

    The list of filters that will be used for deleting data. Data matching the filters will be deleted.

  • deletionJob.error nullable Error

    The error that occurred while deleting data, if any.

  • deletionJob.progress non-null Float

    The current progress of the Deletion Job, from 0.0 to 1.0.

  • deletionJob.startedAt nullable DateTime

    The time at which the Deletion Job started.

  • deletionJob.succeededAt nullable DateTime

    The time at which the Deletion Job succeeded.

  • deletionJob.failedAt nullable DateTime

    The time at which the Deletion Job failed.