Reputation: 5002
I am using Neo4j Community version, when click on a node label, it will auto generate/run cypher script.
MATCH (n:`Person`) RETURN n LIMIT 25
Is there a way to change the default number 25?
Upvotes: 1
Views: 664
Reputation: 591
I guess you can't. If you look at html of neo4j browser, you will see:
ng-click="editor.execScript('MATCH n RETURN n LIMIT 25')"
And I think it's not customizable
Upvotes: 1