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
As @Val pointed out, there is some mismatch in the index mapping that you have posted in the question. Refer terms query, to get a detailed insight on it.
Adding a working example with index data, mapping(same as mentioned in the question) and search query.
Index Mapping:
Index Data:
Search Query:
Search Result:
Search Query for nested type with term query:
Search Result for nested mapping: