- 语句 1
- 场景:清理图空间
- 具体语句:CLEAR SPACE - NebulaGraph Database 手册 ,v3.1.0 开始支持
- 适合版本:v3.1.0 及其以上版本
- 语句出处:https://discuss.nebula-graph.com.cn/t/topic/9068
- 语句 2
- 场景:两个点集之间,两两之间是否存在边
- 具体语句:
(root@nebula) [nba]> """ -> match (v:player) where v.player.age>43 -> match (n:team) where n.team.name starts with "S" -> with v,n,(v)-->(n) as l -> return v.player.name,n.team.name,case when size(l)<>0 then true else false end AS hasConnection -> """
- 适合版本:v2.6.2 及其以上版本
- 语句出处:https://discuss.nebula-graph.com.cn/t/topic/9058
- 语句 3
- 场景:遍历一个 tag 下所有的点 / 查询拥有 tag 的所有点
- 具体语句:
match (v:tag1) return v
- 适合版本:v3.x
- 语句出处:https://discuss.nebula-graph.com.cn/t/topic/8659
- 语句 4
- 场景:根据某一个点查询这个点拥有的边类型
- 具体语句:
match (v)-[e]-(v2) where id(v) == 101 return collect(distinct type(e))
- 适合版本:v3.x
- 语句出处:https://discuss.nebula-graph.com.cn/t/topic/8977
1 个赞