IDseSessionExecuteGraphAsync Method |
Executes a graph statement.
Namespace: DseAssembly: Dse (in Dse.dll) Version: 1.0.0.0
Syntax Task<GraphResultSet> ExecuteGraphAsync(
IGraphStatement statement
)
Parameters
- statement
- Type: Dse.GraphIGraphStatement
The graph statement containing the query
Return Value
Type:
TaskGraphResultSetExamples GraphResultSet rs = await session.ExecuteGraphAsync(new SimpleGraphStatement("g.V()"));
See Also