Click or drag to resize

GraphApiClientDeleteVertexAsyncT Method (String, String, DeleteVertexQuery)

Removes a vertex based on its document ID.

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<DeleteVertexResponse<T>> DeleteVertexAsync<T>(
	string graphName,
	string documentId,
	DeleteVertexQuery query = null
)

Parameters

graphName
Type: SystemString
The name of the graph to delete the vertex from.
documentId
Type: SystemString
The document ID of the vertex to delete.
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsDeleteVertexQuery

Type Parameters

T

Return Value

Type: TaskDeleteVertexResponseT

Implements

IGraphApiClientDeleteVertexAsyncT(String, String, DeleteVertexQuery)
Exceptions
ExceptionCondition
ArgumentExceptionProvided document ID is invalid.
See Also