Created
January 1, 2018 01:04
-
-
Save kanapuli/1cddeed440aa114ece2050c8d272a2b0 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
//match query retrieves all documents which has a title like 'Japan%' | |
{ | |
"_source":["id","name"], | |
"query":{ | |
"match":{ | |
"title": "Japan" | |
} | |
} | |
} | |
//match phrase retrieves all documents which matches the complete phrase "Japan is a leader in" | |
{ | |
"_source":["id","name"], | |
"query":{ | |
"match_phrase":{ | |
"title": "Japan is a leader in" | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment