{
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 ?