-
-
Save jockee/9bff22fcef7cff2f0bd8 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
"query": { | |
"bool": { | |
"should": [ | |
{ | |
"query_string": { | |
"query": "(\"menlo park\") +(\"ruby\" OR \"rubi\" OR \"rubz\")", | |
"default_operator": "or" | |
} | |
}, | |
{ | |
"filtered": { | |
"filter": { | |
"or": [ | |
{ | |
"geo_distance": { | |
"_cache": true, | |
"city_geo_point": [ | |
-122.1811111, | |
37.4538889 | |
], | |
"distance": "50km" | |
} | |
} | |
] | |
} | |
} | |
} | |
], | |
"minimum_should_match": 1 | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment