From 9969b60a01d520ae345bf246ad2f66d2673ef510 Mon Sep 17 00:00:00 2001 From: cooper-lzy <78672629+cooper-lzy@users.noreply.github.com> Date: Wed, 19 Apr 2023 15:34:02 +0800 Subject: [PATCH] Update 6.list.md --- docs-2.0/3.ngql-guide/3.data-types/6.list.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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] | +------------+ ```