cancel
Showing results for 
Search instead for 
Did you mean: 

Head's Up! These forums are read-only. All users and content have migrated. Please join us at community.neo4j.com.

andrej_zivec
Node
since ‎01-05-2022
‎06-01-2022

User Statistics

  • 6 Posts
  • 0 Solutions
  • 0 Kudos given
  • 0 Kudos received

User Activity

Hi, When I run the querry like MATCH (a) RETURN a the result (all node properties) is in one column/string. I know that I can write RETURN a.prop1, a.prop2,.... to have properties in each column. But I look for a universal solution like if I do not k...
I have, let's say a graph with 50 nodes. With Cypher I find 3 possible paths from node A to node B (the result of the Cypher query is also a graph .. a sub-graph) MATCH p=((a:label {Pro1:'A'})-[*7]->(b:label {Pro1:'B'})) RETURN p On the path from A t...