Elasticsearch - Mappings and Data Types
Given this mapping with a nested field
Which query will correctly find documents where
comments and this document:{"title": "Post", "comments": [{"user": "alice", "message": "Hi"}, {"user": "bob", "message": "Hello"}]}Which query will correctly find documents where
comments.user is "alice" and comments.message is "Hello" in the same comment object?