Skip to content

Commit 190e051

Browse files
committed
MC-32278: Position sort does not work in GraphQl.
- fix price_dynamic_algorithm
1 parent aad59c1 commit 190e051

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

app/code/Magento/Eav/Model/Api/SearchCriteria/CollectionProcessor/FilterProcessor.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ private function addFilterGroupToCollection(
6565
) {
6666
$fields = [];
6767
foreach ($filterGroup->getFilters() as $filter) {
68-
if ($filter->getField() != 'search_term') {
68+
if ($filter->getField() != 'search_term' && $filter->getField() != 'price_dynamic_algorithm') {
6969
$isApplied = false;
7070
$customFilter = $this->getCustomFilterForField($filter->getField());
7171
if ($customFilter) {

0 commit comments

Comments
 (0)