Skip to content

Commit

Permalink
Update return.md (#1192)
Browse files Browse the repository at this point in the history
  • Loading branch information
even1111112 authored Nov 10, 2021
1 parent d165196 commit 197e8fa
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docs-2.0/3.ngql-guide/8.clauses-and-options/return.md
Original file line number Diff line number Diff line change
Expand Up @@ -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;
+-------+
Expand Down

0 comments on commit 197e8fa

Please sign in to comment.