Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save aonurdemir/d9aca000988131597b2772301f722b61 to your computer and use it in GitHub Desktop.
Save aonurdemir/d9aca000988131597b2772301f722b61 to your computer and use it in GitHub Desktop.
elasticsearch update document query
POST /productionusers/_update_by_query
{
"query": {
"bool": {
"filter": [
{
"terms": {
"id": [
108513
]
}
}
],
"must_not": [
{
"exists": {
"field": "type"
}
}
]
}
},
"script": "ctx._source.type = \"rookie\";"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment