如何将节点属性设置为递增数字?
How to set node properties as incrementing numbers?
我想将 id 分配给一组节点(不是 id()
节点)。从这个答案我可以 :
MATCH (n) where n.gid="Tt"
WITH collect(n) as nodes
WITH apoc.coll.zip(nodes, range(0, size(nodes))) as pairs
UNWIND pairs as pair
RETURN pair[0].gid as gid, pair[1] as rowNumber
╒═════╤═══════════╕
│"gid"│"rowNumber"│
╞═════╪═══════════╡
│"Tt" │0 │
├─────┼───────────┤
│"Tt" │1 │
├─────┼───────────┤
│"Tt" │2 │
├─────┼───────────┤
│"Tt" │3 │
├─────┼───────────┤
但是,如果我将最后一行更改为
SET pair[0].id=pair[1]
然后我得到这个错误:
Invalid input '[': expected ":" (line 5, column 9 (offset: 145))
"set pair[0].id=pair[1]"
^
有没有办法将节点的id设置为递增的数字?当然,Cypher 将 pair[0]
单独理解为节点;如果它在 RETURN
子句中,那么 pair[0].id
仍然有效。为什么此语法在 SET
中不起作用?
跟进问题:
这应该有效,将 pair[0]
包装在 ()
中以告诉 Neo4j 它是一个节点:
MATCH (n) where n.gid="Tt"
WITH collect(n) as nodes
WITH apoc.coll.zip(nodes, range(0, size(nodes))) as pairs
UNWIND pairs as pair
SET (pair[0]).id = pair[1]
我想将 id 分配给一组节点(不是 id()
节点)。从这个答案我可以
MATCH (n) where n.gid="Tt"
WITH collect(n) as nodes
WITH apoc.coll.zip(nodes, range(0, size(nodes))) as pairs
UNWIND pairs as pair
RETURN pair[0].gid as gid, pair[1] as rowNumber
╒═════╤═══════════╕
│"gid"│"rowNumber"│
╞═════╪═══════════╡
│"Tt" │0 │
├─────┼───────────┤
│"Tt" │1 │
├─────┼───────────┤
│"Tt" │2 │
├─────┼───────────┤
│"Tt" │3 │
├─────┼───────────┤
但是,如果我将最后一行更改为
SET pair[0].id=pair[1]
然后我得到这个错误:
Invalid input '[': expected ":" (line 5, column 9 (offset: 145))
"set pair[0].id=pair[1]"
^
有没有办法将节点的id设置为递增的数字?当然,Cypher 将 pair[0]
单独理解为节点;如果它在 RETURN
子句中,那么 pair[0].id
仍然有效。为什么此语法在 SET
中不起作用?
跟进问题:
这应该有效,将 pair[0]
包装在 ()
中以告诉 Neo4j 它是一个节点:
MATCH (n) where n.gid="Tt"
WITH collect(n) as nodes
WITH apoc.coll.zip(nodes, range(0, size(nodes))) as pairs
UNWIND pairs as pair
SET (pair[0]).id = pair[1]