This message was deleted.
# nebula
s
This message was deleted.
s
I'm trying to get information about all made and received payments as well as information about who made them
w
Hi Stanislav, I can reproduce this issue from my own 2.0.0GA cluster, and also found that it’s equivalent to this discussion that fetch a pipe yielded vid is not yet supported 😞, where Jamie had escalated to the dev team. While, as during the reproduce of your query, i tried create similar schema of yours(which turned out to be different, at least in
made_payment
, but i didnt change it when i realised it). I was thinking, in some extent, match may fulfill your requirement(maybe not that straightforward as the piped fetch will do)?
Copy code
(user@nebula) [payment]> MATCH (v:account{username:"tom"})-[e1:made_payment]-(v1)-[e2:made_payment]-(v2) RETURN DISTINCT e2 AS via, v2.username AS name;
+-------------------------------------------------+-------+
| via                                             | name  |
+-------------------------------------------------+-------+
| [:made_payment "sue"->"sam" @0 {payment_id: 1}] | "sam" |
+-------------------------------------------------+-------+
Hopefully this may help you a little bit(or maybe not, as i didn’t further check like if we put match in 4 steps, how to enable 3 steps results)