Here I am using neo4j rest api, in first step I want to collect information like how many relationships are there between two given nodes.
Sample : MATCH (n:Node {id: {parameter1}})-[r:someType]-(m:Node {id: {parameter2}}) RETURN COUNT(r)
Then I would like to collect all the values assigned to the edges so I can calculate further calculations. I need all the different types of relationships and their properties between two given nodes.
If it is possible I would like to do it in single cypher.