One of my vertex property got his properties (meta properties). But when i return all vertex properties i only get value of that property but not his properties also. Is that possible to do?
This is what i've tried:
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();