From 9aec10eeee4061aaad45d66effe5766928bca9e9 Mon Sep 17 00:00:00 2001 From: Emircan ERKUL <55444-emircanerkul@users.noreply.drupalcode.org> Date: Wed, 31 Jan 2024 11:31:14 -0500 Subject: [PATCH] Issue #3410886 by emircanerkul, AaronBauman: Add option to SelectQuery condition --- src/SelectQuery.php | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/src/SelectQuery.php b/src/SelectQuery.php index 95a5e548..86373b7f 100644 --- a/src/SelectQuery.php +++ b/src/SelectQuery.php @@ -59,11 +59,15 @@ class SelectQuery implements SelectQueryInterface { */ public function __construct($object_type = '') { $this->objectType = $object_type; + $this->conjunction = 'AND'; } /** * Add a condition to the query. * + * Conditions will be combined with the conjunction defined by + * $this->conjunction. Defaults to 'AND'. + * * @param string $field * Field name. * @param mixed $value @@ -100,6 +104,8 @@ class SelectQuery implements SelectQueryInterface { * Implements PHP's magic toString(). * * Function to convert the query to a string to pass to the SF API. + * Conditions will be combined with the conjunction defined by + * $this->conjunction. Defaults to 'AND'. * * @return string * SOQL query ready to be executed the SF API. @@ -116,7 +122,7 @@ class SelectQuery implements SelectQueryInterface { foreach ($this->conditions as $condition) { $where[] = implode('+', $condition); } - $query .= '+WHERE+' . implode('+AND+', $where); + $query .= '+WHERE+' . implode('+' . $this->conjunction . '+', $where); } if ($this->order) { -- GitLab