Skip to content

Commit

Permalink
Merge branch 'MAUT-11289' into development
Browse files Browse the repository at this point in the history
  • Loading branch information
dadarya0 committed Jun 12, 2024
2 parents 3cd0911 + 2b0907a commit 5cea5c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
4 changes: 4 additions & 0 deletions Helper/QueryFilterHelper.php
Original file line number Diff line number Diff line change
Expand Up @@ -179,6 +179,10 @@ private function getCustomValueValueExpression(
case 'neq':
$operator = 'eq';
break;
case '!between':
case 'notBetween':
$operator = 'between';
break;
}
}

Expand Down
2 changes: 2 additions & 0 deletions Segment/Query/Filter/CustomFieldFilterQueryBuilder.php
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,8 @@ public function applyQuery(SegmentQueryBuilder $queryBuilder, ContactSegmentFilt
case 'neq':
case 'notLike':
case '!multiselect':
case '!between':
case 'notBetween':
$queryBuilder->addLogic(
$queryBuilder->expr()->notExists($unionQueryContainer->getSQL()),
$filter->getGlue()
Expand Down

0 comments on commit 5cea5c3

Please sign in to comment.