IGraphApiClientDeleteVertexAsyncT 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 Task<DeleteVertexResponse<T>> DeleteVertexAsync<T>(
string graphName,
string collectionName,
string vertexKey,
DeleteVertexQuery query = null
)
Function DeleteVertexAsync(Of T) (
graphName As String,
collectionName As String,
vertexKey As String,
Optional query As DeleteVertexQuery = Nothing
) As Task(Of DeleteVertexResponse(Of T))
generic<typename T>
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>>
Parameters
- graphName
- Type: SystemString
- collectionName
- Type: SystemString
- vertexKey
- Type: SystemString
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsDeleteVertexQuery
Type Parameters
- T
Return Value
Type:
TaskDeleteVertexResponseTSee Also