Hi,
I tried to run this query.
but this query is not working.
I changed term with match_phrase so it is working.
Can you tell me what the problem is?
GET index/_search
{
"query": {
"bool": {
"must": [
{
"nested": {
"path": "identifiers",
"query": {
"bool": {
"must": [
{
"term": {
"identifiers.value": "PERSONAS"
}
}
]
}
}
}
}
]
}
}
}