Skip to content

Instantly share code, notes, and snippets.

@ZiiSolutions
Created July 12, 2018 15:24
Show Gist options
  • Save ZiiSolutions/e62f69b42feb87fa270f035dcccd8e07 to your computer and use it in GitHub Desktop.
Save ZiiSolutions/e62f69b42feb87fa270f035dcccd8e07 to your computer and use it in GitHub Desktop.
{
"query": {
"terms": {
"profile": [
"advisory",
"alert",
"story",
"story-enriched"
]
},
"bool": {
"must": [
{
"range": {
"firstcreated": {
"gte": "01/07/2018",
"lte": "07/07/2018",
"format": "dd/MM/yyyy"
}
}
}
],
"nested": {
"path": "object",
"query": {
"bool": {
"must_not": {
"match": {
"object.code": "pacontent:private"
}
}
}
}
}
}
},
"sort": {
"firstcreated": {
"order": "desc"
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment