如何使用 Rexster 添加双向边?
How to add bidirectional edge using Rexster?
我正在使用 Rexster 通过 HTTP POST 方法在两个顶点之间创建边。
/graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'>
我指的是 link :
这里我需要提供出顶点(即_outV)和入顶点(即_inV),这是一个单向边。如何使用 Rexster 创建双向边。
TinkerPop 不支持作为 Blueprints (or 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'>
我正在使用 Rexster 通过 HTTP POST 方法在两个顶点之间创建边。
/graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'>
我指的是 link :
这里我需要提供出顶点(即_outV)和入顶点(即_inV),这是一个单向边。如何使用 Rexster 创建双向边。
TinkerPop 不支持作为 Blueprints (or 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'>