Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
在 gremlin 的 tinkerpop文档中,我可以使用 by() 调制器将 valueMap 中的值列表转换为单个项目。
但这在 azure cosmosdb (gremlin API) 上还不起作用
如果我理解,您正在尝试替换此命令:
g.V().hasLabel("Test").valueMap().by(unfold())
我不知道 cosmosDB,也许有更好的方法
但我认为这个查询(如果支持)将是等效的:
g.V().hasLabel("company").local( __.valueMap(false).unfold() .group() .by(__.select(keys)) .by(__.select(values).unfold()))