如何使用Rexster添加双向边缘?

时间:2016-02-08 07:18:35

标签: graph titan edge gremlin rexster

我正在使用Rexster使用HTTP POST方法在两个顶点之间创建边缘。

/graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'>

我指的是链接:

Rexster HTTP

这里我需要提供顶点(即_outV)和顶点(即_inV),这是一个单向边。如何使用Rexster创建双向边缘。

1 个答案:

答案 0 :(得分:2)

TinkerPop不支持双向边缘类型作为Blueprints(或TinkerPop 3.x)的一部分。您必须通过在两个单独的请求中添加相反方向的边来模拟双向性。

/graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'>
/graphs/<graph>/edges/2?_outV=<id>&_label=friend&_inV=3&<key>=<key'>