get_graph_summary
Generate a concise summary of graph data, including overview statistics, node/edge type distributions, and key insights. Optionally include detailed node and edge information for comprehensive analysis using the Pythagraph RED API.
Instructions
Get a concise summary of graph data from Pythagraph RED API. Provides overview statistics, node/edge type distributions, and key insights without overwhelming detail. Use includeDetails=true for more comprehensive analysis.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
graphId | Yes | The unique identifier for the graph to get summary | |
includeDetails | No | Include detailed node and edge information |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"graphId": {
"description": "The unique identifier for the graph to get summary",
"type": "string"
},
"includeDetails": {
"default": false,
"description": "Include detailed node and edge information",
"type": "boolean"
}
},
"required": [
"graphId"
],
"type": "object"
}