bitnine-oss / agensgraph

AgensGraph, a transactional graph database based on PostgreSQL
http://www.agensgraph.org
Other
1.33k stars 148 forks source link

Does agensgraph support properties filter in shortest/allshortest path? #504

Open chenjienn opened 4 years ago

chenjienn commented 4 years ago

I want to filter every node or edge in shortest/allshortest path, but it seems unable to do that

my query sql is below:

match (v1:vertex ),(v2:vertex ),
path=allshortestpaths((v1)-[edges:edge*1..2 {type: 'edge-1'}]->(v2))
return path;

then the result is an error : [0A000] ERROR: property constraint is not supported