In the neo4j tutorial, on page:
http://guides.neo4j.com/4.0-intro-neo4j-exercises/01.html
after the query MATCH(p:Person) RETURN p
is run, there is the statement (emphasis mine):
Notice also, that no relationships are displayed. That is because most Person nodes have no relationships with other Person nodes.
This was probably true years ago, when the Movie DB was first created, but now with the :FOLLOWS
relationship added to make the DB more interesting, the statement should be something like:
Notice also, that almost no relationships are displayed. That is because only a very few Person nodes have the relationship FOLLOWS:
with other Person nodes.
I also suggest the changing "most" to "only a very few"