7 using System.Collections.Generic;
66 public const string TRUE =
"true";
67 public const string FALSE =
"false";
99 public IDictionary<string, string>
options {
get; set; } =
new Dictionary<string, string>();
137 IDictionary<string, string>
options = null)
140 this.options =
options ??
new Dictionary<string, string>();
158 public IList<string>
graph_names {
get; set; } =
new List<string>();
165 public IList<bool>
directed {
get; set; } =
new List<bool>();
168 public IList<long>
num_nodes {
get; set; } =
new List<long>();
171 public IList<long>
num_edges {
get; set; } =
new List<long>();
180 public IList<bool>
is_sync_db {
get; set; } =
new List<bool>();
192 public IDictionary<string, string>
info {
get; set; } =
new Dictionary<string, string>();
IDictionary< string, string > options
Optional parameters.
bool result
Indicates a successf.
ShowGraphRequest()
Constructs a ShowGraphRequest object with default parameters.
IList< long > num_edges
Total number of edges in the graph.
A set of parameters for Kinetica.showGraph(string,IDictionary{string, string}).
IList< string > graph_names
Name(s) of the graph(s).
IList< long > num_nodes
Total number of nodes in the graph.
string graph_name
Name of the graph on which to retrieve information.
A set of results returned by Kinetica.showGraph(string,IDictionary{string, string}).
IList< bool > is_sync_db
Shows whether or not the graph is linked to the original tables that created it, and will potentially...
IList< bool > has_insert_table_monitor
Shows whether or not the graph has an insert table monitor attached to it.
ShowGraphRequest(string graph_name=null, IDictionary< string, string > options=null)
Constructs a ShowGraphRequest object with the specified parameters.
IList< bool > directed
Whether or not the edges of the graph have directions (bi-directional edges can still exist in direct...
IList< string > original_request
The orignal client request used to create the graph (before any expression evaluation or separator pr...
IDictionary< string, string > info
Additional information.
KineticaData - class to help with Avro Encoding for Kinetica
IList< bool > is_persisted
Shows whether or not the graph is persisted (saved and loaded on launch).
const string SHOW_ORIGINAL_REQUEST
If set to true, the request that was originally used to create the graph is also returned as JSON...