Skip to main content
enum

The valid values for the status of a bulk operation.

The bulk operation has been canceled.

Cancelation has been initiated on the bulk operation. There may be a short delay from when a cancelation starts until the operation is actually canceled.

The bulk operation has successfully completed.

The bulk operation has been created.

The bulk operation URL has expired.

The bulk operation has failed. For information on why the operation failed, use BulkOperation.errorCode.

The bulk operation is runnning.


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?