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

Update 3.graph-patterns.md #2488

Merged
merged 1 commit into from
Feb 29, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@
一系列连接的点和边称为`路径`。nGQL 允许使用变量来命名路径,例如:

```ngql
p = (a)-[*3..5]->(b) // 从 a 到 b, 最小长度为 1,最大长度为 5 的路径
p = (a)-[*3..5]->(b) // 从 a 到 b, 最小长度为 3,最大长度为 5 的路径
```

可以在 MATCH 语句中使用路径变量。