我正在尝试添加一条边,在测试中,我遇到201错误。但是,当我在控制台中查询新边缘时,无法看到新边缘。
.hasLabel('Supplied_Material')
.hasId(supld_matl_id)
.as('sm')
.V()
.hasLabel('Capacity_Type')
.hasId(capacity_type_cd)
.coalesce(_.inE('uses_captype'), _.addE('uses_captype').from_('sm')
.property(gremlin.process.t.id, `TEST|${supld_matl_id}:${matl_size_cd}:${production_step}:${capacity_priority}->${capacity_type_cd}`)
.property('division_cd', division_cd)```