Query Interface

Execute Cypher queries against the knowledge graph

Note

This is a simplified query interface. For production use, implement proper query validation and rate limiting. Use the Neo4j Browser for full query capabilities.

Quick Reference

MATCH (c:Concept) - Match concept nodes
MATCH (s:Segment)-[:DISCUSSES]->(c:Concept) - Match segments and their concepts
WHERE c.total_mentions > 5 - Filter by properties
RETURN c ORDER BY c.total_mentions DESC LIMIT 10 - Return and sort results