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-python在顶点之间创建边,但它不起作用
jupyter笔记本
"g.V('ProdDev').addE('belongs').to(g.V('Dept'))"
边缘应该创建....当前正在创建空边缘...
当你使用
g.addV('Season')
用label季节创建一个顶点。
label
但是,当您使用
g.V('Season')
Gremlin 正在寻找一个 ID(不是标签)为 Season 的顶点。
如果您需要使用标签,您可以这样做
g.V().hasLabel('Season')
此外,中间遍历,你不应该使用,g.V()而是你应该做
g.V()
to(V().hasLabel('Season'))