From 41ae2cb68db8047919cecef8d19f1330a16fb54a Mon Sep 17 00:00:00 2001 From: Even <71239503+even1111112@users.noreply.github.com> Date: Wed, 10 Nov 2021 14:41:33 +0800 Subject: [PATCH] Update return.md --- .../3.ngql-guide/8.clauses-and-options/return.md | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/docs-2.0/3.ngql-guide/8.clauses-and-options/return.md b/docs-2.0/3.ngql-guide/8.clauses-and-options/return.md index d24c3474ca..2f56761b50 100644 --- a/docs-2.0/3.ngql-guide/8.clauses-and-options/return.md +++ b/docs-2.0/3.ngql-guide/8.clauses-and-options/return.md @@ -173,13 +173,13 @@ nebula> MATCH (v:player{name:"Tim Duncan"})-[e]->(v2) \ ```ngql nebula> MATCH (v:player{name:"Tony Parker"})-->(v2:player) \ RETURN DISTINCT v2.name, "Hello"+" graphs!", v2.age > 35; -+---------------------+------------------+-------------+ -| v2.name | (Hello+ graphs!) | (v2.age>35) | -+---------------------+------------------+-------------+ -| "Tim Duncan" | "Hello graphs!" | true | -| "LaMarcus Aldridge" | "Hello graphs!" | false | -| "Manu Ginobili" | "Hello graphs!" | true | -+---------------------+------------------+-------------+ ++---------------------+----------------------+-------------+ +| v2.name | ("Hello"+" graphs!") | (v2.age>35) | ++---------------------+----------------------+-------------+ +| "Tim Duncan" | "Hello graphs!" | true | +| "LaMarcus Aldridge" | "Hello graphs!" | false | +| "Manu Ginobili" | "Hello graphs!" | true | ++---------------------+----------------------+-------------+ nebula> RETURN 1+1; +-------+