Click or drag to resize

SessionExecuteGraph Method (IGraphStatement, String)

Namespace:  Cassandra
Assembly:  Cassandra (in Cassandra.dll) Version: 3.13.0
Syntax
C#
public GraphResultSet ExecuteGraph(
	IGraphStatement statement,
	string executionProfileName
)

Parameters

statement
Type: Cassandra.DataStax.GraphIGraphStatement
The graph statement containing the query
executionProfileName
Type: SystemString
The graph execution profile name to use while executing this statement.

Return Value

Type: GraphResultSet

Implements

ISessionExecuteGraph(IGraphStatement, String)
Examples
GraphResultSet rs = session.ExecuteGraph(new SimpleGraphStatement("g.V()"), "graphProfile");
See Also