Filter on a field containing multiple values

{
customer: A,
products: [B, C],
price: [123, 456]
}

{
customer: B,
products: [C, D, E],
price: [123, 789, 987]
}

In this example, how do i filter on product field with one value .... basically in the above example when how do i filter for docs containing products 'D' ...

is it possible use match_phrase and get the above filter ?

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.