Last active
January 18, 2016 18:20
-
-
Save nik9000/9c8a7c8decdc93f2fd18 to your computer and use it in GitHub Desktop.
Example phrase queries
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
{ | |
"size": 0, | |
"query": { | |
"query_string": { | |
"fields": ["text"], | |
"query": "\"deescalates forged\"", | |
"default_operator": "and", | |
"fuzziness": "0", | |
"phrase_slop": 0 | |
} | |
} | |
} | |
{ | |
"size": 0, | |
"query": { | |
"query_string": { | |
"fields": ["text"], | |
"query": "\"visages footballers\"", | |
"default_operator": "and", | |
"fuzziness": "0", | |
"phrase_slop": 0 | |
} | |
} | |
} | |
{ | |
"size": 0, | |
"query": { | |
"query_string": { | |
"fields": ["text"], | |
"query": "\"hot Lr\"", | |
"default_operator": "and", | |
"fuzziness": "0", | |
"phrase_slop": 0 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment