Skip to content

Latest commit

 

History

History
17 lines (11 loc) · 275 Bytes

ReadMe.md

File metadata and controls

17 lines (11 loc) · 275 Bytes

Contains Notes and Stuff.

Random Notes That Need To Be Organized

MongoDB Applied Patterns

Many to Many Joins:

// db.product schema
    { "_id": "My Product",
      "category_ids": [ "My Category", ... ] }
    // db.category schema
{ "_id": "My Category" }