Skip to content

Price LogicalAnd Criterion

The LogicalAnd Search Criterion matches prices if all provided Criteria match.

Arguments

  • criterion - a set of Criteria combined by the logical operator

Example

PHP

1
2
3
4
5
6
$query->query = new \Ibexa\Contracts\ProductCatalog\Values\Price\Query\Criterion\LogicalAnd(
    [
        new \Ibexa\Contracts\ProductCatalog\Values\Price\Query\Criterion\Currency('USD'),
        new \Ibexa\Contracts\ProductCatalog\Values\Price\Query\Criterion\IsCustomPrice()
    ]
);