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 7aa6a95c5ec..2217bced8e9 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 @@ -47,8 +47,8 @@ YIELD [DISTINCT] !!! note - - There are some restrictions for the `WHERE` clause when you traverse along with multiple edge types. For example, `WHERE edge1.prop1 > edge2.prop2` is not supported. - - The GO statement is executed by traversing all the vertices and then filtering according to the filter condition. + - There are some restrictions for the `WHERE` clause when you traverse along with multiple edge types. For example, `WHERE edge1.prop1 > edge2.prop2` is not supported. + - The GO statement is executed by traversing all the vertices and then filtering according to the filter condition. - `YIELD [DISTINCT] `: defines the output to be returned. It is recommended to use the [Schema-related functions](../6.functions-and-expressions/4.schema.md) to fill in ``. `src(edge)`, `dst(edge)`, `type(edge) )`, `rank(edge)`, etc., are currently supported, while nested functions are not. For more information, see [YIELD](../8.clauses-and-options/yield.md).