Skip to content

Commit

Permalink
Remove-glr-parser (#2036)
Browse files Browse the repository at this point in the history
  • Loading branch information
abby-cyber committed Apr 25, 2023
1 parent e616cf8 commit 12fe7d4
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
7 changes: 7 additions & 0 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 @@ -341,6 +341,13 @@ nebula> RETURN 1+1;
| 2 |
+-------+
nebula> RETURN 1- -1;
+----------+
| (1--(1)) |
+----------+
| 2 |
+----------+
nebula> RETURN 3 > 1;
+-------+
| (3>1) |
Expand Down
7 changes: 7 additions & 0 deletions docs-2.0/3.ngql-guide/8.clauses-and-options/yield.md
Original file line number Diff line number Diff line change
Expand Up @@ -178,4 +178,11 @@ nebula> YIELD \
+--------+
| 1 |
+--------+
nebula> YIELD 1- -1;
+----------+
| (1--(1)) |
+----------+
| 2 |
+----------+
```

0 comments on commit 12fe7d4

Please sign in to comment.