Query
operationRecords
Paginate the per-item records of an operation, newest first. Optionally filter by record status.
Arguments
Object, input and enum types open in place — use + to reveal their fields. A type that is already open above the row stops at a ↻ circular marker, and anything nested past the depth limit links out to its own page instead.
- after String default null
- Cursor for fetching the next page of results.
- filter OperationRecordFilterInput default {}
- Filter criteria for operation records.
- status OperationRecordStatus
- Only return records in this status. Omit for all records.
- FAILED
- The item failed during processing.
- PENDING
- The item has not finished processing yet (not started, in progress, or retrying).
- SUCCEEDED
- The item was processed successfully.
- first Int default 100
- Number of records to return (page size, default 100, max 1000 — one page covers any operation created via refetchEngagementBulk).
- operationId ID! required
- ID of the operation whose records to page through.
Returns
A paginated connection of OperationRecord nodes. See Pagination for the connection shape.
- edges [OperationRecordEdge!]!
- List of edges with cursors.
- cursor String!
- Cursor for this node.
- node OperationRecord!
- The operation record.
- itemId ID!
- ID of the item this record tracks — a documented input to mediaContents / transcriptions lookups.
- status OperationRecordStatus!
- Processing status of this item. PENDING covers not-started, in-progress, and retrying records.
- FAILED
- The item failed during processing.
- PENDING
- The item has not finished processing yet (not started, in progress, or retrying).
- SUCCEEDED
- The item was processed successfully.
- nodes [OperationRecord!]!
- List of operation records.
- itemId ID!
- ID of the item this record tracks — a documented input to mediaContents / transcriptions lookups.
- status OperationRecordStatus!
- Processing status of this item. PENDING covers not-started, in-progress, and retrying records.
- FAILED
- The item failed during processing.
- PENDING
- The item has not finished processing yet (not started, in progress, or retrying).
- SUCCEEDED
- The item was processed successfully.
- pageInfo PageInfo!
- Pagination information.
- endCursor String
- Cursor for the last node in this page.
- hasNextPage Boolean!
- Whether there are more results after this page.
- hasPreviousPage Boolean!
- Whether there are results before this page.
- startCursor String
- Cursor for the first node in this page.
- totalCount Int
- Total number of items available.