I Have problem that solved by checking two different type of relation for two same node.
For example, we have to Match section as below:
1. Match("(u:User)-[r:USER_IN_SITE]->(w:WebEnvir)")
.Return(u => u.As<TUser>())
.Results;
2. Match("(u:User)-[r2:USER_IN_CLOUD]->(w:WebEnvir)")
.Return(u => u.As<TUser>())
.Results;
How Can I make merge or union between Match ?