##### COMMANDS TO CREATE A SAMPLE DATABASE & COLLECTION #####
> use bakery

> db.products.insertMany( [
	{ _id: 1, item: { category: "cake", type: "chiffon" }, amount: 10 },
	{ _id: 2, item: { category: "cookies", type: "chocolate chip" }, amount: 50 },
	{ _id: 3, item: { category: "cookies", type: "chocolate chip" }, amount: 15 },
	{ _id: 4, item: { category: "cake",	 type: "lemon" }, amount: 30 },
	{ _id: 5, item: { category: "cake", type: "carrot" }, amount: 20 },
	{ _id: 6, item: { category: "brownies", type: "blondie" }, amount: 10 }
] )

##### COMMAND TO DISPLAY THE DOCUMENTS OF A COLLECTION #####
> db.products.find()