Generate heading IDs

This commit is contained in:
Josh Mock
2024-11-20 13:00:54 -06:00
parent b463776ac4
commit d9938f7973
500 changed files with 12670 additions and 104 deletions

View File

@ -26,6 +26,7 @@
////////
[discrete]
[[client.sql.translate]]
=== client.sql.translate
Translates SQL into Elasticsearch queries
@ -49,7 +50,7 @@ Translates SQL into Elasticsearch queries
++++
interface SqlTranslateRequest extends <<RequestBase>> {
fetch_size?: <<_integer, integer>>
filter?: QueryDslQueryContainer
filter?: <<QueryDslQueryContainer>>
query: string
time_zone?: <<TimeZone>>
}
@ -66,11 +67,11 @@ interface SqlTranslateRequest extends <<RequestBase>> {
<pre>
++++
interface SqlTranslateResponse {
aggregations?: Record<string, AggregationsAggregationContainer>
aggregations?: Record<string, <<AggregationsAggregationContainer>>>
size?: <<_long, long>>
_source?: SearchSourceConfig
fields?: (QueryDslFieldAndFormat | <<Field>>)[]
query?: QueryDslQueryContainer
fields?: (<<QueryDslFieldAndFormat>> | <<Field>>)[]
query?: <<QueryDslQueryContainer>>
sort?: <<Sort>>
}