Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
有没有人找到一种用密码进行简单分箱的方法?我在节点上有一个属性,我想指定一个(开始、停止、步骤)并让 cypher 返回一个节点“箱”列表。
我看到有一个Range函数可能是一个好的开始,但是我如何为每个 bin 创建节点列表?
START n=node(*) with MIN(n.t) as TMIN, MAX(n.t) as TMAX RETURN RANGE(TMIN, TMAX, 3600)
这就是case/when语法在 2.0 中可以做的事情。在 1.9 中没有简单的方法可以做到这一点。
case/when