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

Graph 如何使用Rexster添加双向边缘?,graph,gremlin,titan,edges,rexster,Graph,Gremlin,Titan,Edges,Rexster,我正在使用Rexster使用HTTP POST方法在两个顶点之间创建边 /graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'> /graphs//edges/3?\u outV=&\u label=friend&\u inV=2&=TinkerPop不支持作为(或)的一部分的双向边类型。您必须通过在两个单独的请求中添加相反方向的边来模拟双向性

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

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

/graphs//edges/3?\u outV=&\u label=friend&\u inV=2&=TinkerPop不支持作为(或)的一部分的双向边类型。您必须通过在两个单独的请求中添加相反方向的边来模拟双向性

/graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'>
/graphs/<graph>/edges/2?_outV=<id>&_label=friend&_inV=3&<key>=<key'>
/graphs//edges/3?\u outV=&\u label=friend&\u inV=2&=

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

/graphs/<graph>/edges/3?_outV=<id>&_label=friend&_inV=2&<key>=<key'>
/graphs/<graph>/edges/2?_outV=<id>&_label=friend&_inV=3&<key>=<key'>
/graphs//edges/3?\u outV=&\u label=friend&\u inV=2&=