Skip to content

Instantly share code, notes, and snippets.

@jmn8718
Last active December 19, 2019 01:09
Show Gist options
  • Save jmn8718/5d7ed4d45b6b3aafde30e23170e04cce to your computer and use it in GitHub Desktop.
Save jmn8718/5d7ed4d45b6b3aafde30e23170e04cce to your computer and use it in GitHub Desktop.
Models
// Tag Model
{
_id: mongo id,
label: string,
...
}
// Video Model
{
_id: mongo id,
title: string,
tags: [ mongo id (reference to Tag) ]
...
}
// Playlist Model
{
_id: mongo id,
title: string
videos: [ mongo id (reference to Video) ],
...
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment