I want to create only the collections structure. i.e. Say Products collection contains a list of Categories.
I want to specify this container structure by creating this dependencies, but I do not want to create any collection entry (say there is a loader program somewhere that bulk uploads the data).
The closet analogy in RDBMS is; DBA creates the schema design with constraints and dependencies; application or ETL tool loads the actual data.
Most of the examples that I see simply create a sample collection and then invoke the db.insert(document) OR db.save(document)
Is it even possible in MongoDB?
if the question is not clear, please let me know.
Thanks