Click or drag to resize

GraphApiClient.PatchEdgeAsync<T, U> Method (String, String, T, PatchEdgeQuery)

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

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<PatchEdgeResponse<U>> PatchEdgeAsync<T, U>(
	string graphName,
	string documentId,
	T edge,
	PatchEdgeQuery query = null
)

Parameters

graphName
Type: System.String
The name of the graph in which to update the edge.
documentId
Type: System.String
The document ID of the edge to update.
edge
Type: T
query (Optional)
Type: ArangoDBNetStandard.GraphApi.Models.PatchEdgeQuery

Type Parameters

T
Type of the patch object used to perform a partial update of the edge document.
U
Type of the returned edge document, when ReturnOld or ReturnNew query params are used.

Return Value

Type: Task<PatchEdgeResponse<U>>

Implements

IGraphApiClient.PatchEdgeAsync<T, U>(String, String, T, PatchEdgeQuery)
See Also