Home
Search
Query Builder
Chat
Home
Search
Query Builder
Chat
Cypher Query Interface
Run Query
Copy
Cypher Query Interface
Write and execute Cypher queries against the knowledge graph database.
Query Editor
MATCH (b:Battle) RETURN b.name, b.Year, b.Participants LIMIT 10
Sample Queries
List Battles
MATCH (b:Battle) RETURN b.name, b.Year, b.Participants LIMIT 10
Wars and Battles
MATCH (w:War)<-[:part_of_war]-(b:Battle) RETURN w.War_name, count(b) as battle_count ORDER BY battle_count DESC LIMIT 5
People by Industry
MATCH (p:ArticlePerson) WHERE p.industry IS NOT NULL RETURN p.industry, count(p) as person_count ORDER BY person_count DESC LIMIT 10
Events by Year
MATCH (e:Event) WHERE e.year IS NOT NULL RETURN e.year, count(e) as event_count ORDER BY e.year DESC LIMIT 10
Countries with Battles
MATCH (c:Country)<-[:happened_in]-(b:Battle) RETURN c.country, count(b) as battle_count ORDER BY battle_count DESC LIMIT 10
Available Node Types
ArticlePerson
Battle
City
Continent
Country
Domain
Event
EventType
Group
Industry
Occupation
Person
Place
State
War