From cdc118de002e38aa204b535bbd6934de1a6d4835 Mon Sep 17 00:00:00 2001 From: randomJoe211 <69501902+randomJoe211@users.noreply.github.com> Date: Tue, 18 Jan 2022 11:25:43 +0800 Subject: [PATCH] Update 3.go.md (#1040) --- docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md b/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md index 4a8c3fdf159..01657d6a9bd 100644 --- a/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md +++ b/docs-2.0/3.ngql-guide/7.general-query-statements/3.go.md @@ -13,7 +13,7 @@ GO [[ TO] STEPS ] FROM OVER [{REVERSELY | BIDIRECT}] [ WHERE  ] YIELD [DISTINCT] -[{SAMPLE | LIMIT }] +[{SAMPLE | }] [| GROUP BY {col_name | expr | position} YIELD ] [| ORDER BY [{ASC | DESC}]] [| LIMIT [,] ]; @@ -53,7 +53,7 @@ YIELD [DISTINCT] - `SAMPLE `: takes samples from the result set. For more information, see [SAMPLE](../8.clauses-and-options/sample.md). -- `LIMIT `: limits the number of outputs during the traversal process. For more information, see [LIMIT](../8.clauses-and-options/limit.md). +- ``: limits the number of outputs during the traversal process. For more information, see [LIMIT](../8.clauses-and-options/limit.md). - `GROUP BY`: groups the output into subgroups based on the value of the specified property. For more information, see [GROUP BY](../8.clauses-and-options/group-by.md). After grouping, you need to use `YIELD` again to define the output that needs to be returned.