Last active
December 19, 2019 01:09
-
-
Save jmn8718/5d7ed4d45b6b3aafde30e23170e04cce to your computer and use it in GitHub Desktop.
Models
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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