StartDataImportBatchPayload
ObjectAutogenerated return type of StartDataImportBatch.
mutation { organization(id: $organizationId) { startDataImportBatch } }
Example
mutation StartDataImportBatch(
$organizationId: ID!
$input: StartDataImportBatchInput!
) {
organization(id: $organizationId) {
startDataImportBatch(input: $input) {
errors
}
}
}