get_schema
Retrieve the graph schema to discover available node and edge types with counts. Use it to explore graph structure before querying.
Instructions
Get the graph schema: available node and edge types with counts.
Use this to:
Discover what types exist: "What node types does this graph have?"
Validate edge types before traverse_graph or get_neighbors
Understand graph structure before writing Datalog queries
Find correct type names (e.g., "http:route" not "HTTP_ROUTE")
Options:
type: "nodes" (node types only), "edges" (edge types only), "all" (default)
Tip: Run this first when exploring a new graph to learn the available vocabulary.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| type | No | nodes, edges, or all (default: all) |