Click or drag to resize

GraphApiClientDeleteVertexCollectionAsync Method

Removes a vertex collection from the graph and optionally deletes the collection, if it is not used in any other graph. It can only remove vertex collections that are no longer part of edge definitions, if they are used in edge definitions you are required to modify those first. DELETE/_api/gharial/{graph}/vertex/{collection}

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

Parameters

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

Return Value

Type: TaskDeleteVertexCollectionResponse

Implements

IGraphApiClientDeleteVertexCollectionAsync(String, String, DeleteVertexCollectionQuery)
See Also