Created
December 17, 2013 02:20
-
-
Save b-abctech/7998907 to your computer and use it in GitHub Desktop.
Search query string like with multiple fields
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
GET /stories/fairytale/_search | |
{ | |
"query": { | |
"filtered": { | |
"query": { | |
"match_all": {} | |
}, | |
"filter": { | |
"or": [ | |
{ | |
"query": { | |
"match_phrase": { | |
"title": "red" | |
} | |
} | |
}, | |
{ | |
"query": { | |
"match": { | |
"wrote": "1835" | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment