Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 205 Bytes

File metadata and controls

12 lines (9 loc) · 205 Bytes

MongoDB Applied Patterns

Many to Many Joins:

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