7 using System.Collections.Generic;
43 public const string EDGE =
"edge";
46 public const string NODE =
"node";
62 public long offset {
get;
set; } = 0;
73 public long limit {
get;
set; } = 10000;
104 public IDictionary<string, string>
options {
get;
set; } =
new Dictionary<string, string>();
157 IDictionary<string, string>
options =
null)
202 public IList<string>
labels {
get;
set; } =
new List<string>();
214 public IDictionary<string, string>
info {
get;
set; } =
new Dictionary<string, string>();
A set of string constants for the parameter options.
long limit
Number of entities to retrieve starting from offset.
IDictionary< string, string > info
Additional information map.
const string ENTITY_TYPE
The type of entity to retrieve.
IList< string > labels
Array of distinct label strings.
IList< string > entities_string
Flat array of entity data for name-identifier or WKT-identifier (geo/XY) graphs with a repeating stri...
const string EDGE
Retrieve edge entities (default).
bool result
Indicates a successful retrieval.
long offset
Starting index of the entities to retrieve (0-based).
IList< long > entities_int
Flat array of entity data for integer-identifier graphs with a repeating stride.
string graph_name
Name of the graph from which to retrieve entities.
A set of results returned by Kinetica.getGraphEntities.
A set of parameters for Kinetica.getGraphEntities.
IDictionary< string, string > options
Optional parameters.
GetGraphEntitiesRequest()
Constructs a GetGraphEntitiesRequest object with default parameters.
GetGraphEntitiesRequest(string graph_name, long? offset=null, long? limit=null, IDictionary< string, string > options=null)
Constructs a GetGraphEntitiesRequest object with the specified parameters.
const string NODE
Retrieve node entities.
const string SERVER_ID
Indicates which graph server to send the request to.
KineticaData - class to help with Avro Encoding for Kinetica