Click or drag to resize

GraphApiClientGetVertexAsyncT Method (String, String, GetVertexQuery)

Gets a vertex based on its document ID.

Namespace:  ArangoDBNetStandard.GraphApi
Assembly:  ArangoDBNetStandard (in ArangoDBNetStandard.dll) Version: 1.1.0
Syntax
public virtual Task<GetVertexResponse<T>> GetVertexAsync<T>(
	string graphName,
	string documentId,
	GetVertexQuery query = null
)

Parameters

graphName
Type: SystemString
The name of the graph to get the vertex from.
documentId
Type: SystemString
The document ID of the vertex to retrieve.
query (Optional)
Type: ArangoDBNetStandard.GraphApi.ModelsGetVertexQuery

Type Parameters

T

Return Value

Type: TaskGetVertexResponseT

Implements

IGraphApiClientGetVertexAsyncT(String, String, GetVertexQuery)
Exceptions
ExceptionCondition
ArgumentExceptionProvided document ID is invalid.
See Also