Click or drag to resize

IGraphApiClientPutEdgeAsyncT Method (String, String, T, PutEdgeQuery)

Replaces the data of an edge based on its document ID.

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
Task<PutEdgeResponse<T>> PutEdgeAsync<T>(
	string graphName,
	string documentId,
	T edge,
	PutEdgeQuery query = null
)

Parameters

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

Type Parameters

T
Type of the document used for the update.

Return Value

Type: TaskPutEdgeResponseT
See Also