Skip to content

Commit

Permalink
Update 2.match.md (#1539)
Browse files Browse the repository at this point in the history
  • Loading branch information
cooper-lzy authored Mar 9, 2022
1 parent 2a64604 commit a93399f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion docs-2.0/3.ngql-guide/7.general-query-statements/2.match.md
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,9 @@ nebula> SHOW JOB 122;

!!! Compatibility "历史版本兼容性"

在 Nebula Graph 3.0.0 之前,不支持 `MATCH (v) RETURN v`。在 Nebula Graph 3.0.0 开始,支持`MATCH (v) RETURN v`,不需要创建索引,但需要使用 `LIMIT` 限制输出结果数量。
在 Nebula Graph 3.0.0 之前,不支持 `MATCH (v) RETURN v`。

从 Nebula Graph 3.0.0 开始,支持`MATCH (v) RETURN v LIMIT n`,不需要创建索引,但是必须使用 `LIMIT` 限制输出结果数量。不可以直接执行 `MATCH (v) RETURN v`。

用户可以在一对括号中使用自定义变量来表示模式中的点。例如`(v)`

Expand Down

0 comments on commit a93399f

Please sign in to comment.