public function RestClientInterface::queryMore in Salesforce Suite 8.4
Same name and namespace in other branches
- 8.3 src/Rest/RestClientInterface.php \Drupal\salesforce\Rest\RestClientInterface::queryMore()
- 5.0.x 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\RestCode
public function queryMore(SelectQueryResult $results);