apoc.nodes.rels
Procedure APOC Core
apoc.get.rels(rel|id|[ids]) - quickly returns all relationships with these ids
Usage Examples
The examples in this section are based on the following sample graph:
CREATE (Keanu:Person {name:'Keanu Reeves', born:1964})
CREATE (TheMatrix:Movie {title:'The Matrix', released:1999, tagline:'Welcome to the Real World'})
CREATE (Keanu)-[:ACTED_IN {roles:['Neo']}]->(TheMatrix);
We can return the internal IDs of these nodes using the id
function:
MATCH ()-[r]->()
RETURN id(r) AS id;
id |
---|
499367 |
CALL apoc.nodes.rels([499367]);
rel |
---|
[:ACTED_IN {roles: ["Neo"]}] |