diff --git a/docs-2.0/3.ngql-guide/3.data-types/6.list.md b/docs-2.0/3.ngql-guide/3.data-types/6.list.md index 3954fac1a6f..d9b55d85544 100644 --- a/docs-2.0/3.ngql-guide/3.data-types/6.list.md +++ b/docs-2.0/3.ngql-guide/3.data-types/6.list.md @@ -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] | +------------+ ```