We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Current PHP Docs seems not be up2date?
This example as you show it in the docs dont work?
$params = [ 'index' => 'my_index', 'id' => 'my_id', 'body' => [ 'script' => 'ctx._source.counter += count', 'params' => [ 'count' => 4 ] ] ]; $response = $client->update($params);
The error i got is: "[UpdateRequest] unknown field [params]"
Operating System MacOs
PHP Version 8.0
ES-PHP client version 7.16
Elasticsearch version Cloud 7.16.1
The text was updated successfully, but these errors were encountered:
@Atomzwieback Ya i m facing same issue. i think it should be something like that
$params = [ 'index' => 'products', 'body' => [ 'script' => [ 'lang' => 'painless', 'source' => 'ctx._source.name = params.name;ctx._source.brand = params.brand;ctx._source.category = params.category', 'params' => [ 'name' => 'foo bar', 'brand' => 'brand', 'category' => 'category' ] ], 'query' => [ 'ids' => [ 'values' => [1,5] ] ] ] ]; return $this->client->updateByQuery($params);
Sorry, something went wrong.
No branches or pull requests
Summary of problem or feature request
Current PHP Docs seems not be up2date?
Code snippet of problem
This example as you show it in the docs dont work?
The error i got is: "[UpdateRequest] unknown field [params]"
System details
Operating System
MacOs
PHP Version
8.0
ES-PHP client version
7.16
Elasticsearch version
Cloud 7.16.1
The text was updated successfully, but these errors were encountered: