Anchor to bulkOperationRunMutationbulk
bulkOperationRunMutation
mutation
Creates and runs a bulk operation mutation.
To learn how to bulk import large volumes of data asynchronously, refer to the bulk import data guide.
Anchor to Arguments
Arguments
- Anchor to clientIdentifierclient•
Identifier An optional identifier which may be used for querying.
- Anchor to mutationmutation•String!required
The mutation to be executed in bulk.
- Anchor to stagedUploadPathstaged•
Upload Path String!required The staged upload path of the file containing mutation variables.
Was this section helpful?
Anchor to BulkOperationRunMutationPayload returnsBulkOperationRunMutationPayload returns
- Anchor to bulkOperationbulk•
Operation The newly created bulk operation.
- Anchor to userErrorsuser•
Errors [BulkMutation non-nullUser Error!]! The list of errors that occurred from executing the mutation.
Was this section helpful?
Mutation Reference
mutation bulkOperationRunMutation($clientIdentifier: String, $mutation: String!, $stagedUploadPath: String!) {
bulkOperationRunMutation(clientIdentifier: $clientIdentifier, mutation: $mutation, stagedUploadPath: $stagedUploadPath) {
bulkOperation {
# BulkOperation fields
}
userErrors {
field
message
}
}
}
Input
{
"clientIdentifier": "<your-clientIdentifier>",
"mutation": "<your-mutation>",
"stagedUploadPath": "<your-stagedUploadPath>"
}
{
"clientIdentifier": "<your-clientIdentifier>",
"mutation": "<your-mutation>",
"stagedUploadPath": "<your-stagedUploadPath>"
}