var workflowsPutGraphs = controller({success: 201},function(req) {
    return Promise.try(function() {
        return workflowApiService.defineTaskGraph(req.body);
    });
});