@RequestMapping(
      value = "/{topologyId}/workflows/{workflowName}/edges/{from}/{to}",
      method = RequestMethod.DELETE,
      produces = MediaType.APPLICATION_JSON_VALUE)
  public RestResponse<Workflow> removeEdge(
      @PathVariable String topologyId,
      @PathVariable String workflowName,
      @PathVariable String from,
      @PathVariable String to) {

    Topology topology = topologyServiceCore.getMandatoryTopology(topologyId);
    topologyService.checkEditionAuthorizations(topology);
    topologyService.throwsErrorIfReleased(topology);

    Workflow wf = workflowBuilderService.removeEdge(topology, workflowName, from, to);
    alienDAO.save(topology);
    return RestResponseBuilder.<Workflow>builder().data(wf).build();
  }