You are here

public function SelectQueryRaw::__construct in Salesforce Suite 5.0.x

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

SelectQueryRaw constructor.

Parameters

string $query: The SOQL query.

File

src/SelectQueryRaw.php, line 23

Class

SelectQueryRaw
Class SelectQueryRaw to construct SOQL manually from a string.

Namespace

Drupal\salesforce

Code

public function __construct($query) {
  $this->query = $query;
}