Click or drag to resize

IDseSessionExecuteGraphAsync Method (IGraphStatement)

Executes a graph statement.

Namespace:  Dse
Assembly:  Dse (in Dse.dll) Version: 2.9.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