Skip to main content

◆ showGraph() [1/2]

ShowGraphResponse kinetica.Kinetica.showGraph (ShowGraphRequestrequest_)
inline

Shows information and characteristics of graphs that exist on the graph server.

Parameters
request_Request object containing the parameters for the operation.
Returns
Response object containing the result of the operation.

Definition at line 60179 of file KineticaFunctions.cs.

◆ showGraph() [2/2]

ShowGraphResponse kinetica.Kinetica.showGraph (stringgraph_name = "",
IDictionary< string, string >options = null )
inline

Shows information and characteristics of graphs that exist on the graph server.

Parameters
graph_nameName of the graph on which to retrieve information. If left as the default value, information about all graphs is returned. The default value is ”.
optionsOptional parameters.
  • SHOW_ORIGINAL_REQUEST: If set to TRUE, the request that was originally used to create the graph is also returned as JSON. Supported values:The default value is TRUE.
  • SERVER_ID: Indicates which graph server(s) to send the request to. Default is to send to get information about all the servers.
  • EXPORT_GRAPH_SCHEMA: If true, generates the graph ontology (schema) as a DOT format string in the response info field under the key ‘dot’. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
Returns
Response object containing the result of the operation.

Definition at line 60269 of file KineticaFunctions.cs.

◆ ShowGraphAsync() [1/2]

async System.Threading.Tasks.Task< ShowGraphResponse > kinetica.Kinetica.ShowGraphAsync (ShowGraphRequestrequest_,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows information and characteristics of graphs that exist on the graph server.

(async)

Parameters
request_Request object containing the parameters for the operation.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 60195 of file KineticaFunctions.cs.

◆ ShowGraphAsync() [2/2]

async System.Threading.Tasks.Task< ShowGraphResponse > kinetica.Kinetica.ShowGraphAsync (stringgraph_name = "",
IDictionary< string, string >options = null,
System.Threading.CancellationTokencancellationToken = default )
inline

Shows information and characteristics of graphs that exist on the graph server.

(async)

Parameters
graph_nameName of the graph on which to retrieve information. If left as the default value, information about all graphs is returned. The default value is ”.
optionsOptional parameters.
  • SHOW_ORIGINAL_REQUEST: If set to TRUE, the request that was originally used to create the graph is also returned as JSON. Supported values:The default value is TRUE.
  • SERVER_ID: Indicates which graph server(s) to send the request to. Default is to send to get information about all the servers.
  • EXPORT_GRAPH_SCHEMA: If true, generates the graph ontology (schema) as a DOT format string in the response info field under the key ‘dot’. Supported values:The default value is FALSE.
The default value is an empty Dictionary.
cancellationTokenCancellation token to cancel the operation.
Returns
Task that returns the response object containing the result of the operation.

Definition at line 60343 of file KineticaFunctions.cs.