Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add annotation to some examples of MATCH clause #2374

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
Expand Up @@ -44,6 +44,7 @@ MATCH <pattern> [<clause_1>] RETURN <output> [<clause_2>];
用户可以在一对括号中使用自定义变量来表示模式中的点。例如`(v)`。

```ngql
# 读取全图空间中任意 3 个点数据
nebula> MATCH (v) \
RETURN v \
LIMIT 3;
Expand Down