You are here

public function RestClientInterface::queryMore in Salesforce Suite 5.0.x

Same name and namespace in other branches
  1. 8.4 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::queryMore()
  2. 8.3 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::queryMore()

Given a select query result, fetch the next results set, if it exists.

Parameters

\Drupal\salesforce\SelectQueryResult $results: The query result which potentially has more records.

Return value

\Drupal\salesforce\SelectQueryResult If there are no more results, $results->records will be empty.

1 method overrides RestClientInterface::queryMore()
RestClient::queryMore in src/Rest/RestClient.php
Given a select query result, fetch the next results set, if it exists.

File

src/Rest/RestClientInterface.php, line 191

Class

RestClientInterface
Objects, properties, and methods to communicate with the Salesforce REST API.

Namespace

Drupal\salesforce\Rest

Code

public function queryMore(SelectQueryResult $results);