Elasticsearch - Document Operations
What will happen if you send this update request?
POST /orders/_update/1001
{
"script": {
"source": "ctx._source.quantity += params.count",
"params": {"count": 3}
}
}