deleteEdge method
inherited
Deletes an edge between two revisions.
All three parameters must match an existing edge exactly.
Implementation
Future<StatusResponse> deleteEdge(
String sourceKref,
String targetKref,
String edgeType,
) async {
final request = DeleteEdgeRequest()
..sourceKref = Kref(uri: sourceKref)
..targetKref = Kref(uri: targetKref)
..edgeType = edgeType;
return stub.deleteEdge(request, options: callOptions);
}