mirror of
https://github.com/elastic/elasticsearch.git
synced 2025-06-28 09:28:55 -04:00
While the internal structure of the docs is already split into many (over 1000) sub-pages, the final display for the `Functions and Operators` page is a single giant page, making navigation harder. This PR splits it into separate pages, one for each group of similar functions and one for the operators. Twelve new pages. This PR also bundles a few other related changes. In total what is done is: * Split functions/operators into 12 pages, one for each group, maintaining the existing split of each function/operator into a snippet with dynamically generated examples * Split esql-commands.md into source-commands.md and processing-commands.md, each of which is split into individual snippets, one for each command * Each command snippet has it's examples split out into separate files, if they were examples that were dynamically generated in the older asciidoc system * The examples files are overwritten by the ES|QL unit tests, using a similar mechanism to the examples written for functions and operators) * Some additional refinements to the Kibana definition and markdown files (nicer operator headings, and display text)
899 B
899 B
navigation_title | mapped_pages | |
---|---|---|
Commands |
|
{{esql}} commands [esql-commands]
Source commands [esql-source-commands]
An {{esql}} source command produces a table, typically with data from {{es}}. An {{esql}} query must start with a source command.
:::{image} ../images/source-command.svg :alt: A source command producing a table from {{es}} :::
{{esql}} supports these source commands:
:::{include} _snippets/lists/source-commands.md :::
Processing commands [esql-processing-commands]
{{esql}} processing commands change an input table by adding, removing, or changing rows and columns.
:::{image} ../images/processing-command.svg :alt: A processing command changing an input table :::
{{esql}} supports these processing commands:
:::{include} _snippets/lists/processing-commands.md :::