Still new to ES so apologies if this is obvious. Let's say I have a document with the structure like this
{..., 'objectArray': [{'a': 3, 'b': 2}, {'a': 0, 'b': 4}]}
in which my objectArray property is an array of objects. How would I query for documents in this index that have an object within objectArray with a = 3 and b = 4? So the above document would not be in the result set but
{..., 'objectArray': [{'a': 3, 'b': 2}, {'a': 3, 'b': 4}]}
would be
If you could show an example in NEST or just illustrate the type of query so I could read about it, that would be awesome, thanks so much