From 32fbcc3a9e01dd11fcae7aa7ece9cbcbbb23f788 Mon Sep 17 00:00:00 2001 From: Andrew Gale Date: Mon, 16 Aug 2021 14:07:07 -0400 Subject: [PATCH] Update AddQuery examples to match function signature --- docs/_sources/quickstart.rst.txt | 2 +- docs/quickstart.html | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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();