Hi,
I have an index temple that defines a nested field as follows :
"equipments": {
"type": "nested",
"properties": {
"label": {
"type": "keyword"
},
"reference": {
"type": "keyword"
}
}
}
I have tried this but it does not seem to work .
.es(index=myindex,q='equipments.reference:1454546463' )
I just need to check that there is at least one "equipment" with the given reference
Any suggestion ?