apoc.get.rels
Procedure APOC Full
apoc.get.rels(rel|id|[ids]) - quickly returns all relationships with these id’s
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 |
---|
0 |
CALL apoc.get.rels([0]);
rel |
---|
[:ACTED_IN {roles: ["Neo"]}] |