Click or drag to resize

GraphApiClientGetEdgeAsyncT Method (String, String, GetEdgeQuery)

Gets an edge from the given graph using the edge's document-handle. GET /_api/gharial/{graph}/edge/{collection}/{edge}

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<GetEdgeResponse<T>> GetEdgeAsync<T>(
	string graphName,
	string edgeHandle,
	GetEdgeQuery query = null
)

Parameters

graphName
Type: SystemString
The name of the graph.
edgeHandle
Type: SystemString
The document-handle of the edge document.
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsGetEdgeQuery

Type Parameters

T
The type of the edge document to deserialize to.

Return Value

Type: TaskGetEdgeResponseT

Implements

IGraphApiClientGetEdgeAsyncT(String, String, GetEdgeQuery)
See Also