Click or drag to resize

IGraphApiClientGetEdgeAsyncT Method (String, String, String, GetEdgeQuery)

Gets an edge from the given graph using the edge collection and _key attribute.

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

Parameters

graphName
Type: SystemString
The name of the graph.
collectionName
Type: SystemString
The name of the edge collection the edge belongs to.
edgeKey
Type: SystemString
The _key attribute of the edge.
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsGetEdgeQuery

Type Parameters

T
The type of the edge document to deserialize to.

Return Value

Type: TaskGetEdgeResponseT
See Also