Skip to content

Commit f4a9830

Browse files
committed
Don't skip all filters if only one is null
1 parent 236a4a6 commit f4a9830

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Factory/FilteredQueryBuilderFactory.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private function applyFilters(ClassMetadata $metadata, InputObjectType $type, ar
8282
$dqlConditions = [];
8383
foreach ($conditions['fields'] as $field => $fieldConditions) {
8484
if ($fieldConditions === null) {
85-
return;
85+
continue;
8686
}
8787

8888
/** @var InputObjectType $typeField */

0 commit comments

Comments
 (0)