Open mdobri opened 5 years ago
AgensBrowser displays only what the return specifies match (a)-[..5]-(b) where a.name='A' return ; will return only a and b, both nodes, no edges, since both a and b are nodes
match (a)-[r]-(b) return *; will return both nodes and edges because r is included in the return
To get AgensBrowser to display your path of up to 5 nodes you should use
match p=()-[*..5]->() return p;
Be aware there was an issue in AgensGraph 1.0 with variable length path syntax
You should upgrade to the latest version of AgensGraph and AgensBrowser https://bitnine.net/agensgraph-downloads/ or github https://github.com/bitnine-oss/agensgraph.
Then match p=(a)-[*..5]-() where a.name = 'A' return p; will give you the expected result as shown
Thanks, the syntax brings me a step further, but now facing issue #429 instead. Seems I have to wait for the next release
@mdobri Please,Can you tell me configuration of agens graph browser? I am getting exception northwind_graph db not matching when i am starting my agensbrowser at linux shell.