2fd69fb0538e4f36ac69a8b8f8bf5ae8.asciidoc 392 B

1234567891011121314151617181920
  1. // docs/update-by-query.asciidoc:355
  2. [source, php]
  3. ----
  4. $params = [
  5. 'index' => 'twitter',
  6. 'body' => [
  7. 'script' => [
  8. 'source' => 'ctx._source.likes++',
  9. 'lang' => 'painless',
  10. ],
  11. 'query' => [
  12. 'term' => [
  13. 'user' => 'kimchy',
  14. ],
  15. ],
  16. ],
  17. ];
  18. $response = $client->updateByQuery($params);
  19. ----