在过滤器中包括 'NULL' 值以及 Elastica 中的范围过滤器

Include 'NULL' values in filter along with range filter in Elastica

我正在使用 Elastica,我需要创建一个过滤器来获取 NULL 值以及低于 100 的值。

现在我的代码如下所示:

$this->filter = $qb->query()->bool();
$this->filter->addShould($qb->query()->range('price', ['lte' => 100]));

returns 数据 价格 低于 100。 我还需要获取具有 null 值的数据。 到目前为止我试过:

$this->filter->addMustNot($qb->query()->exists('price')); // returns 0 items
$this->filter->addShould($qb->query()->missing('price')); // doesn't work. Gives undefined query "missing" in Facade.php

有人可以帮我解决这个问题吗?或者如何解决未定义查询 "missing" 的问题或创建另一个适合我需要的过滤器。谢谢

使用相同的 range() 使其按照我的需要工作。 所以它看起来像这样:

$this->filter->addMustNot($qb->query()->range('price', ['gte' => 100]));

我正在使用 addMustNot,因此它会过滤所有与该过滤器匹配的值(所有小于 100 的值都将被返回,即使它是 null 值).