From d17283c86a27d73899fc6e560befc1b20113287d Mon Sep 17 00:00:00 2001 From: Christian Georgi Date: Mon, 16 Dec 2024 16:01:39 +0100 Subject: [PATCH] Add missing anchors --- cds/cqn.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/cds/cqn.md b/cds/cqn.md index 2abdab96d..f392c84b7 100644 --- a/cds/cqn.md +++ b/cds/cqn.md @@ -116,6 +116,10 @@ type source = ref &as | SELECT | { {#as} +{#expand} + +{#name} + Property `columns` specifies the columns to be selected, projected, or aggregated, and is specified as an array of `column`s: ```tsx @@ -159,6 +163,9 @@ class SELECT { SELECT: { ### `.orderBy` +{#order} + +{#ordering-terms} ```tsx class SELECT { SELECT: { //... @@ -247,6 +254,8 @@ let q = {INSERT:{ into: { ref: ['Authors'] }, entries: [ ### `.values` +{#scalar} + Allows input data to be specified as an single array of values, as in SQL. ```js @@ -352,6 +361,10 @@ class DELETE { DELETE: { {#param} +{#xo} + +{#infix} + Following are the axiomatic building blocks used in CQN expressions: ```tsx