Hello,
In this example, how can I search the nested attachments? A simple example would be super helpful.
I am trying something like this but getting a nested object error:
{
"query": {
"bool": {
"must": [
{
"nested": {
"path": "attachments",
"query": {
"bool": {
"must": [
{
"match": {
"attachments.content": "search text"
}
}
]
}
}
}
}
]
}
}
}