Click or drag to resize

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

Updates the data of the specific vertex in the collection. PATCH/_api/gharial/{graph}/vertex/{collection}/{vertex}

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

Parameters

graphName
Type: SystemString
collectionName
Type: SystemString
vertexKey
Type: SystemString
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, String, T, PatchVertexQuery)
See Also