Skip to content

Commit

Permalink
Update 6.list.md (#2066)
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy committed Apr 25, 2023
1 parent adc4063 commit 26d2daa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs-2.0/3.ngql-guide/3.data-types/6.list.md
Original file line number Diff line number Diff line change
Expand Up @@ -195,12 +195,12 @@ nebula> GO FROM "player100" OVER follow WHERE properties(edge).degree NOT IN [x
# The following query takes the query result of the MATCH statement as the elements in a list. Then it calculates and returns them.
nebula> MATCH p = (n:player{name:"Tim Duncan"})-[:follow]->(m) \
RETURN [n IN nodes(p) | n.age + 100] AS r;
RETURN [n IN nodes(p) | n.player.age + 100] AS r;
+------------+
| r |
+------------+
| [142, 136] |
| [142, 133] |
| [142, 141] |
+------------+
```

Expand Down

0 comments on commit 26d2daa

Please sign in to comment.