Archive API docs

Object

Operation

Represents an asynchronous operation with its current status and progress.

Fields

completedAt DateTimeWithZone
Timestamp when the operation finished processing. Null if still in progress.
createdAt DateTimeWithZone!
Timestamp when the operation was created.
failedItemIds [ID!]!
IDs of items that failed during processing.
id ID!
Unique identifier for the operation.
operationType String!
The type of operation being performed (e.g., refetch_engagement).
pendingItemIds [ID!]!
IDs of items that have not yet been processed.
processed Int!
Number of items that have been processed so far.
status OperationStatus!
Current processing status of the operation.
succeededItemIds [ID!]!
IDs of items that completed successfully.
total Int!
Total number of items to process in this operation.