What you can explore
The playground is for multifaceted connections across Knowledge Graph V2, not entity dumps. Starter chips (loaded from the meta endpoint) include Alzheimer facet chains, 4–6 hop walks, and variable-length paths. Use the live Graph Playground to run them.
UI
Open Graph Playground: use
Test drive our APIs for public endpoints, or the Cypher editor for connection queries.
Shortcut: Ctrl/⌘ + Enter.
Endpoints
GET /api/playground/meta
Labels, edge types, starter connection queries, graph totals (Redis fresh + stale). Host: https://api.care-intel.net.
POST /api/playground/query
{
"cypher": "MATCH (d:Disease)-[:ASSOCIATED_WITH]->(g:Gene) WHERE … RETURN … LIMIT 20",
"limit": 20
}
Full starter Cypher ships from /api/playground/meta; it is not duplicated in this page.
Related public APIs
GET /api/public/kg/presets: allowlisted warehouse presetsGET /api/public/kg/query?preset=…: run one presetGET /api/subgraphs/sample: designated sample SKU previewGET /api/subgraphs/catalog: published subgraph SKUs
Rules
- Read-only:
MATCH/OPTIONAL MATCH/WITH/UNWIND/RETURNonly. - No writes, no
CALLprocedures. - Hard cap of 50 rows; server enforces
LIMIT. - Default query timeout is 20s (
PLAYGROUND_QUERY_TIMEOUT_MS). - Responses cached in Redis under graph load.