I have a path in the graph with a mix of relationships and nodes:
(a:N1)-[r1:R1]->(b:N2)-[r2:R2]->(c:N3)-[r3:R3]->(d:N4)->...
In my C# side I have POCO classes:
N1, N2, N3, N4 inherit from abstract class N0R1, R2, R3 inherit from abstract class R0
I ...