Files
elasticsearch-js/docs/reference-sql-translate.asciidoc
2024-12-05 14:46:52 -06:00

82 lines
4.1 KiB
Plaintext

[[reference-sql-translate]]
////////
===========================================================================================================================
|| ||
|| ||
|| ||
|| ██████╗ ███████╗ █████╗ ██████╗ ███╗ ███╗███████╗ ||
|| ██╔══██╗██╔════╝██╔══██╗██╔══██╗████╗ ████║██╔════╝ ||
|| ██████╔╝█████╗ ███████║██║ ██║██╔████╔██║█████╗ ||
|| ██╔══██╗██╔══╝ ██╔══██║██║ ██║██║╚██╔╝██║██╔══╝ ||
|| ██║ ██║███████╗██║ ██║██████╔╝██║ ╚═╝ ██║███████╗ ||
|| ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝╚═════╝ ╚═╝ ╚═╝╚══════╝ ||
|| ||
|| ||
|| This file is autogenerated, DO NOT send pull requests that changes this file directly. ||
|| You should update the script that does the generation, which can be found in: ||
|| https://github.com/elastic/elastic-client-generator-js ||
|| ||
|| You can run the script with the following command: ||
|| npm run elasticsearch -- --version <version> ||
|| ||
|| ||
|| ||
===========================================================================================================================
////////
[discrete]
[[client.sql.translate]]
=== client.sql.translate
Translates SQL into Elasticsearch queries
{ref}/sql-translate-api.html[{es} documentation]
[discrete]
==== Function signature
[source,ts]
----
(SqlTranslateRequest, options?): Promise<SqlTranslateResponse>
----
[discrete]
==== SqlTranslateRequest
[pass]
++++
<pre>
++++
interface SqlTranslateRequest extends <<RequestBase>> {
fetch_size?: <<integer>>
filter?: <<QueryDslQueryContainer>>
query: string
time_zone?: <<TimeZone>>
}
[pass]
++++
</pre>
++++
[discrete]
==== SqlTranslateResponse
[pass]
++++
<pre>
++++
interface SqlTranslateResponse {
aggregations?: Record<string, <<AggregationsAggregationContainer>>>
size?: <<long>>
_source?: SearchSourceConfig
fields?: (<<QueryDslFieldAndFormat>> | <<Field>>)[]
query?: <<QueryDslQueryContainer>>
sort?: <<Sort>>
}
[pass]
++++
</pre>
++++