我的一个顶点属性获得了他的属性(元属性)。但是,当我返回所有顶点属性时,我只会获得该属性的值,而不会获得其属性。那有可能吗?
这是我尝试过的:
g.V(rootID).Out()
.Has("name", splitedPath[0]).Repeat(Out().SimplePath()).Until(Has("name", splitedPath[splitedPath.Length - 1])).Out()
.Repeat(Out().SimplePath()).Until(Label().Is("Recording")).Has("name", Between(partialPropertyName, partialPropertyName + "a"))
.Project<object>("id", "label", "properties")
.By(Id())
.By(Label())
.By(ValueMap<string, object>())
.Dedup().ToList();
答案 0 :(得分:2)
由于Project()
不返回元属性,因此您将需要By()
再次使用它们的“属性” ValueMap()
(以某种方式)。这是Java中通过properties()
完成此操作的示例:
gremlin> g.V(1).project('id','label','properties').
......1> by(id).
......2> by(label).
......3> by(properties().group().by(key).by(union(value(),valueMap()).fold()).fold())
==>[id:1,label:person,properties:[[name:[marko,[]],location:[san diego,[startTime:1997,endTime:2001],santa cruz,[startTime:2001,endTime:2004],brussels,[startTime:2004,endTime:2005],santa fe,[startTime:2005]]]]]