IGraphApiClientGetVertexAsyncT Method (String, String, String, GetVertexQuery) |
Gets a vertex from the given collection.
GET/_api/gharial/{graph}/vertex/{collection}/{vertex}
Namespace:
ArangoDBNetStandard.GraphApi
Assembly:
ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax Task<GetVertexResponse<T>> GetVertexAsync<T>(
string graphName,
string collectionName,
string vertexKey,
GetVertexQuery query = null
)
Function GetVertexAsync(Of T) (
graphName As String,
collectionName As String,
vertexKey As String,
Optional query As GetVertexQuery = Nothing
) As Task(Of GetVertexResponse(Of T))
generic<typename T>
Task<GetVertexResponse<T>^>^ GetVertexAsync(
String^ graphName,
String^ collectionName,
String^ vertexKey,
GetVertexQuery^ query = nullptr
)
abstract GetVertexAsync :
graphName : string *
collectionName : string *
vertexKey : string *
?query : GetVertexQuery
(* Defaults:
let _query = defaultArg query null
*)
-> Task<GetVertexResponse<'T>>
Parameters
- graphName
- Type: SystemString
- collectionName
- Type: SystemString
- vertexKey
- Type: SystemString
- query (Optional)
- Type: ArangoDBNetStandard.GraphApi.ModelsGetVertexQuery
Type Parameters
- T
Return Value
Type:
TaskGetVertexResponseTSee Also