Click or drag to resize

SimpleGraphStatement Constructor (IDictionaryString, Object, String)

Creates a new instance of SimpleGraphStatement using a query with named parameters.

Namespace:  Dse.Graph
Assembly:  Dse (in Dse.dll) Version: 2.9.0
Syntax
C#
public SimpleGraphStatement(
	IDictionary<string, Object> values,
	string query
)

Parameters

values
Type: System.Collections.GenericIDictionaryString, Object
An Dictionary object containing the parameters name and values as key and values.
query
Type: SystemString
The graph query string.
Examples
new SimpleGraphStatement(
    new Dictionary<string, object>{ { "myName", "mark" } }, 
    "g.V().has('name', myName)")
See Also