Raw schema
{
"type": "object",
"properties": {
"graphId": {
"type": "string",
"description": "The graph ID. Use list_graphs to see all options. Examples: 'retail', 'tech', 'food', 'travel', 'beauty', 'sports', 'sic', 'pew', 'ce-design', 'ezra-eeman-wayfinder', 'dhl-ecommerce-trends-2026', 'automotive-color-trends', 'alyson-stevens-macro', 'generative-realities', 'pwc/sxsw-2026-key-insights', 'green-house/thrive-report', 'michaels-2026-creativity-trend-report', 'delta/the-connection-index'"
},
"seed_node_ids": {
"type": "array",
"items": {
"type": "string"
},
"description": "Array of node IDs to start traversal from. MUST be actual node_id values from a prior search_graph result (e.g. [\"2507.0\"]). Node IDs are NOT sequential integers — do NOT guess or invent IDs like \"1\", \"2\", \"3\". Always call search_graph first to obtain valid IDs."
},
"userId": {
"description": "Optional user identifier for trial usage tracking.",
"type": "string"
},
"relationship_types": {
"description": "Filter by relationship types: 'EVIDENCED_BY', 'RELATED_TO', 'SEMANTICALLY_SIMILAR', 'ASSOCIATED_BRAND', 'MENTIONS_BRAND', 'IN_LOCATION'",
"type": "array",
"items": {
"type": "string"
}
},
"direction": {
"description": "Traversal direction: 'out' (default) follows outgoing edges, 'in' follows incoming edges",
"type": "string",
"enum": [
"in",
"out"
]
},
"depth": {
"description": "Traversal depth (default 1, max 2)",
"type": "number"
},
"limit": {
"description": "Maximum results (default 50)",
"type": "number"
}
},
"required": [
"graphId",
"seed_node_ids"
],
"$schema": "http://json-schema.org/draft-07/schema#"
}