如何使用gremlin控制台

时间:2016-07-19 14:01:40

标签: datastax-enterprise gremlin-server datastax-enterprise-graph

如何从

中删除Edge label
  

DataStax Enterprise 5.0图表

使用

  

gremlin console

1 个答案:

答案 0 :(得分:0)

如果您只是想通过Id:

来删除边缘
g.E(edge_id).drop()

如果您要删除具有特定标签的所有边

g.E().hasLabel('example_label').drop()

这有两个假设。首先,您已将g指定为要与之交互的图形的别名。

 :remote config alias g graph_name.g

第二:除非您为图表启用了开发模式,否则您需要为EdgeLabel设置适当的索引。默认情况下,由于性能原因,不允许对图形进行深度扫描,正确的索引有助于防止这些类型的扫描。

https://docs.datastax.com/en/latest-dse/datastax_enterprise/graph/using/indexOverview.html