1

我正在尝试获取特定用户的文件夹结构的权限。我首先得到一个文件夹列表,然后循环然后获取用户在权限列表路径中的每个位置的权限。例如。

start n = node(folderID) match n<-[r:SECURITY]-x, x<-[v:IS_MEMBER_OF_GROUP*]-b where b.Name = "user1" return n,r.Comment;

start n = node(3911) match n<-[r:SECURITY]-x, b-[v:IS_MEMBER_OF_GROUP*]-x where b.Name = "user1" return x, r.Comment;

问题是它不包括结果中的 user1 关系。有没有办法在查询中包含这个?(不作为单独的列)。树结构看起来像:http ://docs.neo4j.org/chunked/stable/examples-acl-structures-in-graphs.html

4

0 回答 0