IDseSessionExecuteGraphAsync Method (IGraphStatement, String) |
Namespace:
Dse
Assembly:
Dse (in Dse.dll) Version: 2.9.0
Syntax Task<GraphResultSet> ExecuteGraphAsync(
IGraphStatement statement,
string executionProfileName
)
Parameters
- statement
- Type: Dse.GraphIGraphStatement
The graph statement containing the query - executionProfileName
- Type: SystemString
The graph execution profile name to use while executing this statement.
Return Value
Type:
TaskGraphResultSetExamples Task<GraphResultSet$gt; task = session.ExecuteGraphAsync(new SimpleGraphStatement("g.V()"), "graphProfile");
See Also