Hi,
Thank you reading this newbie question. Elasticsearch instance has mapping (see below) and 10+MM documents. Question is how to query? e.g. consider name is "official_mail_id" and description is "tester@gmail.com"
Thank you in advance for any help.
Mapping:
{
"head" : {
"mappings" : {
"page" : {
"properties" : {
"templates" : {
"properties" : {
"description" : {
"type" : "string"
},
"name" : {
"type" : "string"
}
}
}
}
}
}
}
}