0
私は、選択した条件のcontains
またはnot_contains
all
またはany
のクエリに基づいて弾性検索クエリを作成できます。弾性検索条件が異なる
私は、次のpossibilitesを持っている:
contains
all
:elasticsearchで、これはmust
クエリcontains
any
次のとおりです。elasticsearchで、これはshould
クエリnot_contains
all
です:elasticsearchで、これはありますamust_not { bool { must [ ... ] } }
クエリnot_contains
any
:これは
は私が修正アム
must_not { bool { should [ ... ] } }
クエリがあるelasticsearchに?
としてmust_not働きはどうもありがとうございました! –