Click or drag to resize

IGraphApiClientPutVertexAsyncT Method (String, String, T, PutVertexQuery)

Replaces the data of a vertex based on its document ID.

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
Task<PutVertexResponse<T>> PutVertexAsync<T>(
	string graphName,
	string documentId,
	T vertex,
	PutVertexQuery query = null
)

Parameters

graphName
Type: SystemString
The name of the graph in which to replace the vertex.
documentId
Type: SystemString
The document ID of the vertex to replace.
vertex
Type: T
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsPutVertexQuery

Type Parameters

T

Return Value

Type: TaskPutVertexResponseT
See Also