Hi all,
I am quite new to Neo4j and cypher queries and it would be great if you could help me.
I have the following nodes:
Transaction (tx)
Output (output)
with the following relations:
Incoming (in)
Outgoing (out)
a Transaction creates 1-n out...
Yes.
Transactions (orange nodes) are connected with outputs (blue nodes) via IN or OUT relation.
So, I would need to replace the IN-OUTPUT-OUT part between the transactions with a kind of dummy relation (only in the query result).
On additional idea came to my mind, which I am trying to find a query:
It would be great to see the interactions of transactions. Means, I would like to see only transactions in my graph, without he outputs of the transactions (see picture above).
I ...
@Cobra: Thanks a lot! I had a look in this chapter, but somehow I was not able to handle the outputs and transactions....
Now I managed it!
MATCH path= (roottx:tx {txid:'266160772'})<-[:in|:out*1..6]-(tx:tx)
RETURN path
basically delivered the same ...