Click or drag to resize

GraphApiClientPatchVertexAsyncT, U Method (String, String, T, PatchVertexQuery)

Updates the data of the specific vertex based on its document ID.

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<PatchVertexResponse<U>> PatchVertexAsync<T, U>(
	string graphName,
	string documentId,
	T body,
	PatchVertexQuery query = null
)

Parameters

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

Type Parameters

T
Type of the patch object
U
Type of the returned document, only applies when ReturnNew or ReturnOld are used.

Return Value

Type: TaskPatchVertexResponseU

Implements

IGraphApiClientPatchVertexAsyncT, U(String, String, T, PatchVertexQuery)
Exceptions
ExceptionCondition
ArgumentExceptionProvided document ID is invalid.
See Also