This is the query that is used for searching :
{ "query": {
"term": {"properties.subscriptionid": "test"
}
}
}
Result :
"hits": [
{
"_id": "ILojbHQB1164tHwpvfoc",
"_source": {
"properties": {
"subscriptionid": "test",
}
If i use :
{ "query": {
"term": {"subscriptionid": "test"
}
}
}
I am not getting any result.
Index mappings :
"mappings": {
"properties": {
"subscriptionid": {
"type": "keyword"
},
"resources":{
"type": "nested",
}
}
*Removed not necessary to decrease the code area