diff --git a/docs/_sources/quickstart.rst.txt b/docs/_sources/quickstart.rst.txt index be66ab08..5291fea4 100644 --- a/docs/_sources/quickstart.rst.txt +++ b/docs/_sources/quickstart.rst.txt @@ -994,7 +994,7 @@ Developers will need to create a ``$batch`` object first, then add the operation .. code-block:: php $batch = $dataService->CreateNewBatch(); - $batch->AddQuery("select * from Customer startPosition 0 maxResults 20", "queryCustomer", "uniqueQuery"); + $batch->AddQuery("select * from Customer startPosition 0 maxResults 20", "uniqueQueryIdentifier"); $batch->AddEntity($invoice, "uniqueIdentifier", "create"); $batch->Execute(); diff --git a/docs/quickstart.html b/docs/quickstart.html index 20e81972..a981f63d 100644 --- a/docs/quickstart.html +++ b/docs/quickstart.html @@ -1067,7 +1067,7 @@

Batch Request$batch object first, then add the operation in the batch request:

$batch = $dataService->CreateNewBatch();
-$batch->AddQuery("select * from Customer startPosition 0 maxResults 20", "queryCustomer", "uniqueQuery");
+$batch->AddQuery("select * from Customer startPosition 0 maxResults 20", "uniqueQueryIdentifier");
 $batch->AddEntity($invoice, "uniqueIdentifier", "create");
 $batch->Execute();