service neo4j-service stop
service neo4j-service start
// all Page nodes named Automobile
match (n:Page{name:'Automobile'}) return count(*);
// = 24 // should be 1
match (n:Page) return n.id, n.name, count(*) limit 10;
n.id | n.name | count(*) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
null | European_Car_of_the_Year | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
null | Hamm_AG | 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
null | Ford_Motors | 1 |
No comments:
Post a Comment