So here's my dilemma...
I want to be able to find distinct pairs of node with some value (a: nodeA {number: 1}), that are found in node (b)
by distinct pairs I mean:
1,2
3,4
and not:
1,2
2,1
I'm just looking for the proper syntax so I can implement i...