From 1177e98f63ee531a038be0c571ff15d22587fc12 Mon Sep 17 00:00:00 2001 From: JustDoIt Date: Thu, 15 Jul 2021 17:56:03 +0800 Subject: [PATCH] =?UTF-8?q?=E6=96=87=E6=A1=A3=E4=B9=A6=E5=86=99=E9=94=99?= =?UTF-8?q?=E8=AF=AF=E6=9B=B4=E6=AD=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 将name更正为age --- docs-2.0/3.ngql-guide/5.operators/5.property-reference.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs-2.0/3.ngql-guide/5.operators/5.property-reference.md b/docs-2.0/3.ngql-guide/5.operators/5.property-reference.md index abf15444fca..95016d2605c 100644 --- a/docs-2.0/3.ngql-guide/5.operators/5.property-reference.md +++ b/docs-2.0/3.ngql-guide/5.operators/5.property-reference.md @@ -18,7 +18,7 @@ nGQL提供引用符来表示`WHERE`和`YIELD`子句中的属性,或者复合 ```ngql # 返回起始点和目的点的年龄。 -nebula> GO FROM "player100" OVER follow YIELD $^.player.name AS SrcAge, $$.player.age AS DestAge; +nebula> GO FROM "player100" OVER follow YIELD $^.player.age AS SrcAge, $$.player.age AS DestAge; +--------+---------+ | SrcAge | DestAge | +--------+---------+ @@ -41,4 +41,4 @@ nebula> GO FROM "player100" OVER follow \ +-----------------+-----------+ | "Manu Ginobili" | "Spurs" | +-----------------+-----------+ -``` \ No newline at end of file +```