IGraphApiClientPutVertexAsyncT Method (String, String, String, T, PutVertexQuery) |
Replaces the data of a vertex in the collection.
PUT/_api/gharial/{graph}/vertex/{collection}/{vertex}
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<PutVertexResponse<T>> PutVertexAsync<T>(
string graphName,
string collectionName,
string key,
T vertex,
PutVertexQuery query = null
)
Function PutVertexAsync(Of T) (
graphName As String,
collectionName As String,
key As String,
vertex As T,
Optional query As PutVertexQuery = Nothing
) As Task(Of PutVertexResponse(Of T))
generic<typename T>
Task<PutVertexResponse<T>^>^ PutVertexAsync(
String^ graphName,
String^ collectionName,
String^ key,
T vertex,
PutVertexQuery^ query = nullptr
)
abstract PutVertexAsync :
graphName : string *
collectionName : string *
key : string *
vertex : 'T *
?query : PutVertexQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<PutVertexResponse<'T>>
Parameters
- graphName
- Type: SystemString
- collectionName
- Type: SystemString
- key
- Type: SystemString
- vertex
- Type: T
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsPutVertexQuery
Type Parameters
- T
Return Value
Type:
TaskPutVertexResponseTSee Also