get_graph_schema
Retrieve schema information for a specific knowledge graph to understand its structure and data organization.
Instructions
Get schema information for a specific graph via API server.
Args:
graph_id: Graph ID to analyze
Returns:
JSON string with schema information
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| graph_id | Yes |
Input Schema (JSON Schema)
{
"properties": {
"graph_id": {
"title": "Graph Id",
"type": "string"
}
},
"required": [
"graph_id"
],
"type": "object"
}