Skip to content

Instantly share code, notes, and snippets.

@neatlife
Created June 30, 2020 10:14
Show Gist options
  • Save neatlife/4d2820569e1cb62b7390bac5225c982c to your computer and use it in GitHub Desktop.
Save neatlife/4d2820569e1cb62b7390bac5225c982c to your computer and use it in GitHub Desktop.
es api usage
{
"query": {
"bool": {
"must": [
{
"match_all": {}
},
{
"match_phrase": {
"send_type": {
"query": "2"
}
}
}
],
"must_not": []
}
},
"sort": [
{
"create_date" : {"order": "desc"}
}
],
"from": 0,
"size": 10
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment