I'm running Neo4j Community v.3.5.7 on a Mac.
I have a schema that looks something like this:
(:Person { Name: Name, FullName: FullName, Level: Level, Strength: Strength})
(:Strength {Name: Strength})
When I do a query,
MATCH (p:Person),(s:Strength)...