Click or drag to resize
IDseSessionExecuteGraphAsync Method
Executes a graph statement.

Namespace: Dse
Assembly: Dse (in Dse.dll) Version: 2.3.0
Syntax
C#
Task<GraphResultSet> ExecuteGraphAsync(
	IGraphStatement statement
)

Parameters

statement
Type: Dse.GraphIGraphStatement
The graph statement containing the query

Return Value

Type: TaskGraphResultSet
Examples
Task<GraphResultSet$gt; task = session.ExecuteGraphAsync(new SimpleGraphStatement("g.V()"));
See Also