在neo4j REST API的批处理操作中添加关系属性

时间:2016-09-20 13:09:43

标签: neo4j

此JSON格式成功加载关系:

{"method":"POST","to":"/node/25612/relationships","id":25612,"body":{"to":"25614","type":"father"}}

为关系添加“权重”属性的格式是什么?

1 个答案:

答案 0 :(得分:2)

使用REST API的batch操作时,body.data对象指定关系属性,如:

{
  "method":"POST",
  "to":"/node/25612/relationships",
  "id":25612,
  "body":{
    "to":"25614",
    "type":"father",
    "data": {
      "weight": 175
    }
  }
}