Dear ABK,
Thank you very much for your quick reply and help.
Based on you example, I try to explain well the problem which is very simple. We take the same classic "Movies" graph but I add a property in the relationship 'ACTED_IN'. The property is for example βyearβ:
CREATE
(Keanu)-[:ACTED_IN {roles:['Neo'], year:['1999']}]->(TheMatrix),
(Keanu)-[:ACTED_IN {roles:['Neo'], year:['2001']}]->(TheMatrix),
(Keanu)-[:ACTED_IN {roles:['Neo'], year:['2003']}]β(TheMatrix)
but when I want to extract and display only the edge having the property: r.year = '1999'.
It shows all the edges between Keanu and TheMatrix instead of the unique edge having the property 1999. However the result in text format as well as
the table format is correct. There is only a confusion in the display
of the results.
Here is the result between the display of the graph and the table format. Why does'nt display the same result as the table format?