如何访问neo4j节点的内部ID?
How to access the internal id of neo4j node?
我知道我应该避免在 neo4j 中使用内部 id,但是有没有办法访问 neo4j 中节点的内部 id 并 RETURN DISTINCT 基于这个内部 id 的所有节点?
我试过这个:
match (n) where id(n)=123 return n;
这个 return 我是内部 id=123 的节点,但是如何根据内部 id 获取数据库中存在的所有节点?
一次只能有一个节点具有给定的内部 ID。删除节点后,其内部 ID 可以重新分配给新节点,但在此之前不能。
所以,您的查询最多只能return一个结果。
想象一下:
CREATE (:SomeLabel {myId:123})-[:someRelationshipType]->(:SomeLabel {myId:456})
这将创建两个节点,它们之间有关系。该关系的类型为 someRelationshipType
。
那么,如果执行以下查询会发生什么?
MATCH
(s:SomeLabel)-[rel:someRelationshipType]->(target:SomeLabel)
RETURN
ID(s), // Built-in Neo4j function to retrieve the internal node id
s.myId, // Access the property myId that you created above
LABELS(s), // Lists all labels for the start node
ID(rel), // Built-in Neo4j function to retrieve the internal relationship id
TYPE(rel), // Built-in Neo4j function to retrieve the relationship type
ID(target), // Built-in Neo4j function to retrieve the internal node id
target.myId // Access the property myId that you created above
查询的输出类似于:
ID(root) | root.myId | LABELS(root) | ID(rel) | TYPE(rel) | ID(target) | target.myId
-----------------------------------------------------------------------------------------------
192 | 123 | SomeLabel | 271 | someRelationshipType | 193 | 456
这显示了一些有趣的事情。首先,有几个 return 值的内置函数不是您自己提供的。 ID()
函数 return 是 节点或关系的内部 ID 。这是一个生成的 id,你无法控制自己,它完全由数据库处理(它甚至可能被重用,所以你不能真正依赖这些值)。每个节点都有恰好一个内部ID,并且在整个数据库中都是唯一的,因此您永远找不到具有相同内部ID的多个节点。
但是,在上面的查询中还有一个名为 myId
的 属性。可以有多个节点实际上对 属性 具有相同的值,因为它是我们自己创建的 属性。确保这些属性包含唯一值的唯一方法是使用 UNIQUE
-约束 (see the docs here).
可以使用以下语法设置唯一约束:
CREATE CONSTRAINT ON (n:SomeLabel) ASSERT n.myId IS UNIQUE
原始 MATCH
查询中的其他函数是:
LABELS
- return 是属于节点 的所有 labels 的列表
TYPE
- returns 创建节点时指定的关系类型。
最后一点,如果你想获取图中的所有节点,你可以使用以下查询:
MATCH (n) RETURN n;
但是,请注意 - 如果图很大,很可能是 painful/expensive 操作来检索所有节点。
我知道我应该避免在 neo4j 中使用内部 id,但是有没有办法访问 neo4j 中节点的内部 id 并 RETURN DISTINCT 基于这个内部 id 的所有节点?
我试过这个:
match (n) where id(n)=123 return n;
这个 return 我是内部 id=123 的节点,但是如何根据内部 id 获取数据库中存在的所有节点?
一次只能有一个节点具有给定的内部 ID。删除节点后,其内部 ID 可以重新分配给新节点,但在此之前不能。
所以,您的查询最多只能return一个结果。
想象一下:
CREATE (:SomeLabel {myId:123})-[:someRelationshipType]->(:SomeLabel {myId:456})
这将创建两个节点,它们之间有关系。该关系的类型为 someRelationshipType
。
那么,如果执行以下查询会发生什么?
MATCH
(s:SomeLabel)-[rel:someRelationshipType]->(target:SomeLabel)
RETURN
ID(s), // Built-in Neo4j function to retrieve the internal node id
s.myId, // Access the property myId that you created above
LABELS(s), // Lists all labels for the start node
ID(rel), // Built-in Neo4j function to retrieve the internal relationship id
TYPE(rel), // Built-in Neo4j function to retrieve the relationship type
ID(target), // Built-in Neo4j function to retrieve the internal node id
target.myId // Access the property myId that you created above
查询的输出类似于:
ID(root) | root.myId | LABELS(root) | ID(rel) | TYPE(rel) | ID(target) | target.myId
-----------------------------------------------------------------------------------------------
192 | 123 | SomeLabel | 271 | someRelationshipType | 193 | 456
这显示了一些有趣的事情。首先,有几个 return 值的内置函数不是您自己提供的。 ID()
函数 return 是 节点或关系的内部 ID 。这是一个生成的 id,你无法控制自己,它完全由数据库处理(它甚至可能被重用,所以你不能真正依赖这些值)。每个节点都有恰好一个内部ID,并且在整个数据库中都是唯一的,因此您永远找不到具有相同内部ID的多个节点。
但是,在上面的查询中还有一个名为 myId
的 属性。可以有多个节点实际上对 属性 具有相同的值,因为它是我们自己创建的 属性。确保这些属性包含唯一值的唯一方法是使用 UNIQUE
-约束 (see the docs here).
可以使用以下语法设置唯一约束:
CREATE CONSTRAINT ON (n:SomeLabel) ASSERT n.myId IS UNIQUE
原始 MATCH
查询中的其他函数是:
LABELS
- return 是属于节点 的所有 labels 的列表
TYPE
- returns 创建节点时指定的关系类型。
最后一点,如果你想获取图中的所有节点,你可以使用以下查询:
MATCH (n) RETURN n;
但是,请注意 - 如果图很大,很可能是 painful/expensive 操作来检索所有节点。