Rm558
Rm558

Reputation: 5002

How to change the default limit 25 in Neo4j community

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

Answers (1)

mif
mif

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

Related Questions