POST IP/index/type/id/_update
body
{
"doc": {
"field": value
}
}
POST IP/index/type/_update_by_query
body
{
"query": {
"bool": {
"filter": {
"terms": {
"name": [
"li",
"wang"
]
}
}
}
},
"script": {
"source": "ctx._source.age=18"
}
}