|
|
|
|
|
by 3dfan
1721 days ago
|
|
Is that the shortest way to write it in Cypher? SQL needs 48 chars: SELECT name FROM cities WHERE population>1000000
Cypher needs 57 chars: MATCH (n:cities) WHERE n.population>1000000 RETURN n.name
I would be very hesitant to use a language that needs 19% more code to express the same thing. |
|