Skip to content

Commit

Permalink
Update 6.list.md
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy authored Apr 19, 2023
1 parent 47db8b8 commit 9a29df1
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
# 将 MATCH 语句的查询结果作为列表中的元素进行运算并返回。
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 9a29df1

Please sign in to comment.