Click or drag to resize

IGraphApiClientDeleteEdgeAsyncT Method (String, String, String, DeleteEdgeQuery)

Removes an edge from the collection. DELETE /_api/gharial/{graph}/edge/{collection}/{edge}

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
Task<DeleteEdgeResponse<T>> DeleteEdgeAsync<T>(
	string graphName,
	string collectionName,
	string edgeKey,
	DeleteEdgeQuery query = null
)

Parameters

graphName
Type: SystemString
The name of the graph.
collectionName
Type: SystemString
The name of the edge collection the edge belongs to.
edgeKey
Type: SystemString
The _key attribute of the edge.
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsDeleteEdgeQuery

Type Parameters

T
The type of the edge that is returned in Old if requested.

Return Value

Type: TaskDeleteEdgeResponseT
See Also