You are here

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

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

Same as ::query(), but also returns deleted or archived records.

Parameters

\Drupal\salesforce\SelectQueryInterface $query: The constructed SOQL query.

Return value

\Drupal\salesforce\SelectQueryResult The query result.

1 method overrides RestClientInterface::queryAll()
RestClient::queryAll in src/Rest/RestClient.php
Same as ::query(), but also returns deleted or archived records.

File

src/Rest/RestClientInterface.php, line 180

Class

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

Namespace

Drupal\salesforce\Rest

Code

public function queryAll(SelectQueryInterface $query);