Created
January 18, 2016 18:16
-
-
Save nik9000/942047d2465981e63cf3 to your computer and use it in GitHub Desktop.
Example OR 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": "transgression Scotsman", | |
"default_operator": "or", | |
"fuzziness": "0", | |
"phrase_slop": 0 | |
} | |
} | |
} | |
{ | |
"size": 0, | |
"query": { | |
"query_string": { | |
"fields": ["text"], | |
"query": "laryngitis build", | |
"default_operator": "or", | |
"fuzziness": "0", | |
"phrase_slop": 0 | |
} | |
} | |
} | |
{ | |
"size": 0, | |
"query": { | |
"query_string": { | |
"fields": ["text"], | |
"query": "premeditates upperclassmen", | |
"default_operator": "or", | |
"fuzziness": "0", | |
"phrase_slop": 0 | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment