Answer the question
In order to leave comments, you need to log in
How to search in an array field in ElasticSearch?
There is an index with such a mapping
{
"words": {
"mappings": {
"word": {
"properties": {
"_id": {
"type": "string"
},
"defs": {
"properties": {
"text": {
"type": "string",
"analyzer": "terms_defs"
}
}
},
"termin": {
"type": "string"
}
}
}
}
}
}
{
"_index": "words",
"_type": "word",
"_id": "5697a367a3cb0a39705aa739",
"_score": 1,
"_source": {
"termin": "СТЕРЕОФОТОГРАММЕТРИЯ",
"defs": [
{
"text": "наука, изучающий методы измерения объемных форм по паре фотоснимков"
},
{
"text": "раздел фотограмметрии, изучающий методы измерения объемных форм по стереопарам фотоснимков"
},
{
"text": "наука, изучающая методы измерения объемных форм (например, рельефа местности) по стереопаре фотоснимков, основанные на использовании стереоскопического эффекта и измерении объемной модели местности специальными приборами"
}
],
"_id": "5697a367a3cb0a39705aa739"
}
}
{
"query":{
"bool": {
"should": [{
"function_score": {
"query": {
"match": {
"defs.text": {
"query": "наука фотограмметрии",
"fuzziness": "AUTO",
"operator": "and"
}
}
}
}
}]
}
}
}
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question