Click or drag to resize

GraphApiClientDeleteEdgeDefinitionAsync Method

Remove one edge definition from the graph. This will only remove the edge collection, the vertex collections remain untouched and can still be used in your queries. DELETE/_api/gharial/{graph}/edge/{definition}

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<DeleteEdgeDefinitionResponse> DeleteEdgeDefinitionAsync(
	string graphName,
	string collectionName,
	DeleteEdgeDefinitionQuery query = null
)

Parameters

graphName
Type: SystemString
collectionName
Type: SystemString
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsDeleteEdgeDefinitionQuery

Return Value

Type: TaskDeleteEdgeDefinitionResponse

Implements

IGraphApiClientDeleteEdgeDefinitionAsync(String, String, DeleteEdgeDefinitionQuery)
See Also