Click or drag to resize

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
)

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: TaskPutVertexResponseT
See Also