Mega Proger
Mega Proger

Reputation: 419

MongoDB Compass displaying documents 20 limit

I want to able Compass show more than 20 documents per 'page' e.g. 1-100 of 400

Screen of problem:

enter image description here

Already tried: View more than 20 most recent documents in MongoDB Compass from Schema I don't need to limit all results

How to print out more than 20 items (documents) in MongoDB's shell? On this step i want see results in Compass itself. DBQuery.shellBatchSize = 300 do nothing - tried in shell and restart mongo+compass both

Upvotes: 16

Views: 12468

Answers (1)

Pavel
Pavel

Reputation: 692

Basically, you can export data to json or csv without paging limit by using menu Collection->Export Collection and then 'Export Full Collection'

http://docs.mongodb.com/compass/master/import-export/

Upvotes: 1

Related Questions