Click or drag to resize

GraphApiClientPutEdgeAsyncT Method (String, String, String, T, PutEdgeQuery)

Replaces the data of an edge in the collection. PUT /_api/gharial/{graph}/edge/{collection}/{edge}

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

Parameters

graphName
Type: SystemString
collectionName
Type: SystemString
edgeKey
Type: SystemString
edge
Type: T
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsPutEdgeQuery

Type Parameters

T
Type of the document used for the update.

Return Value

Type: TaskPutEdgeResponseT

Implements

IGraphApiClientPutEdgeAsyncT(String, String, String, T, PutEdgeQuery)
See Also