Click or drag to resize

ISessionExecuteGraphAsync Method (IGraphStatement)

Executes a graph statement.

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

Parameters

statement
Type: Cassandra.DataStax.GraphIGraphStatement
The graph statement containing the query

Return Value

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