##### COMMANDS TO CREATE A SAMPLE DATABASE & COLLECTION #####

> use warehouse

> db.garden.insertMany( [
	{ "Name" : "Apple", "attrs" : [ "red", "fruit", "round" ] }, 
	{ "Name" : "Mongo", "attrs" : [ "red", "fruit", "round" ] }, 
	{ "Name" : "Guava", "attrs" : [ "green", "fruit", "leaf" ] },  
	{ "Name" : "Tomato", "attrs" : [ "red", "vegetable", "round" ] }, 
	{ "Name" : "Lettuce", "attrs" : [ "green", "vegetable", "leaf" ] },
	{ "Name" : "Potato", "attrs" : [ "yellow", "vegetable", "round" ] }
] );

##### COMMAND TO DISPLAY THE DOCUMENTS OF A COLLECTION #####

> db.garden.find()