Skip to content

Instantly share code, notes, and snippets.

@ORESoftware
Created July 6, 2020 19:55
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ORESoftware/4fb70d2f0a3b8a0c48e5452efe634f66 to your computer and use it in GitHub Desktop.
Save ORESoftware/4fb70d2f0a3b8a0c48e5452efe634f66 to your computer and use it in GitHub Desktop.
es query for version 7
{
"from": 0,
"query": {
"bool": {
"must": [
{
"simple_query_string": {
"query": "*"
}
},
{
"term": {
"organization_id": "fred"
}
},
{
"term": {
"tags": "monetization"
}
},
{
"term": {
"status": "duplicate"
}
}
]
}
},
"size": 50,
"sort": {
"updated": "desc"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment