If we have the following JavaScript object:
var obj = { field: { field: { field: { field: {...} } } } }
how deep can MongoDB go?
In accordance with the official documentation MongoDB supports 100 levels of nesting for BSON documents. Beside this there's a size limitation for a single document which is 16 megabytes.
If you are interested in storing larger documents you should read about GridFS.
2.1m questions
2.1m answers
60 comments
57.0k users