Skip to main content
Anchor to BulkOperationErrorCode

BulkOperationErrorCode

enum

Error codes for failed bulk operations.

The provided operation query returned access denied due to missing access scopes. Review the requested object permissions and execute the query as a normal non-bulk GraphQL request to see more details.

Anchor to INTERNAL_SERVER_ERRORINTERNAL_SERVER_ERROR

The operation resulted in partial or incomplete data due to internal server errors during execution. These errors might be intermittent, so you can try performing the same query again.

The operation resulted in partial or incomplete data due to query timeouts during execution. In some cases, timeouts can be avoided by modifying your query to select fewer fields.


Was this section helpful?

•OBJECT

An asynchronous operation that exports large datasets or imports data in bulk. Create bulk operations using bulkOperationRunQuery to export data or bulkOperationRunMutation to import data.

After creation, check the status field to track progress. When completed, the url field contains a link to download results in JSONL format. The objectCount field shows the running total of processed objects, while rootObjectCount tracks only root-level objects in nested queries.

If an operation fails but retrieves partial data, then the partialDataUrl field provides access to incomplete results.


Note

url and partialDataUrl values expire after seven days.


Learn more about exporting and importing data in bulk.


Was this section helpful?