| GraphApiClientDeleteVertexAsyncT Method (String, String, String, DeleteVertexQuery) | 
 
            Removes a vertex from the collection.
            DELETE/_api/gharial/{graph}/vertex/{collection}/{vertex}
            
 
    Namespace: 
   ArangoDBNetStandard.GraphApi
    Assembly:
   ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
 Syntax
Syntaxpublic virtual Task<DeleteVertexResponse<T>> DeleteVertexAsync<T>(
	string graphName,
	string collectionName,
	string vertexKey,
	DeleteVertexQuery query = null
)
Public Overridable Function DeleteVertexAsync(Of T) ( 
	graphName As String,
	collectionName As String,
	vertexKey As String,
	Optional query As DeleteVertexQuery = Nothing
) As Task(Of DeleteVertexResponse(Of T))
public:
generic<typename T>
virtual Task<DeleteVertexResponse<T>^>^ DeleteVertexAsync(
	String^ graphName, 
	String^ collectionName, 
	String^ vertexKey, 
	DeleteVertexQuery^ query = nullptr
)
abstract DeleteVertexAsync : 
        graphName : string * 
        collectionName : string * 
        vertexKey : string * 
        ?query : DeleteVertexQuery 
(* Defaults:
        let _query = defaultArg query null
*)
-> Task<DeleteVertexResponse<'T>> 
override DeleteVertexAsync : 
        graphName : string * 
        collectionName : string * 
        vertexKey : string * 
        ?query : DeleteVertexQuery 
(* Defaults:
        let _query = defaultArg query null
*)
-> Task<DeleteVertexResponse<'T>> Parameters
- graphName
- Type: SystemString
 
- collectionName
- Type: SystemString
 
- vertexKey
- Type: SystemString
 
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsDeleteVertexQuery
 
Type Parameters
- T
Return Value
Type: 
TaskDeleteVertexResponseTImplements
IGraphApiClientDeleteVertexAsyncT(String, String, String, DeleteVertexQuery) See Also
See Also