-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathes_fuzzy_search-1.json
38 lines (38 loc) · 1.04 KB
/
es_fuzzy_search-1.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
POST /images/_search
{
"query": {
"bool": {
"must": [
{
"match": {
"s3bucket": "mys3bucket"
}
},
{
"nested": {
"path": "Labels",
"score_mode": "sum",
"query": {
"function_score": {
"query": {
"fuzzy": {
"Labels.Name": {
"value": "Poster",
"boost": 1,
"fuzziness": 2,
"prefix_length": 0,
"max_expansions": 100
}
}
},
"field_value_factor": {
"field": "Labels.Confidence"
}
}
}
}
}
]
}
}
}