IGraphApiClientGetEdgeAsyncT 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 Task<GetEdgeResponse<T>> GetEdgeAsync<T>(
string graphName,
string edgeHandle,
GetEdgeQuery query = null
)
Function GetEdgeAsync(Of T) (
graphName As String,
edgeHandle As String,
Optional query As GetEdgeQuery = Nothing
) As Task(Of GetEdgeResponse(Of T))
generic<typename T>
Task<GetEdgeResponse<T>^>^ GetEdgeAsync(
String^ graphName,
String^ edgeHandle,
GetEdgeQuery^ query = nullptr
)
abstract GetEdgeAsync :
graphName : string *
edgeHandle : string *
?query : GetEdgeQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<GetEdgeResponse<'T>>
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:
TaskGetEdgeResponseTSee Also