-
Notifications
You must be signed in to change notification settings - Fork 87
New issue
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
Fix most esql.query request types #2671
Conversation
locale?: string | ||
/** | ||
* To avoid any attempts of hacking or code injection, extract the values in a separate list of parameters. Use question mark placeholders (?) in the query string for each of the parameters. | ||
* @doc_id esql-query-params | ||
*/ | ||
params?: Array<ScalarValue> | ||
params?: Array<EsqlParam> | ||
profile?: boolean |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This one is undocumented but used in the YAML tests, which is why I'm adding without details.
This comment was marked as outdated.
This comment was marked as outdated.
With |
This comment was marked as outdated.
This comment was marked as outdated.
Values can look like {"n1": "5"}, for example, with `n1` being an arbitrary key.
Following you can find the validation results for the API you have changed.
You can validate this API yourself by using the |
So I get |
Following you can find the validation results for the API you have changed.
You can validate this API yourself by using the |
No description provided.