Mongo Models
A brief look at how the data is modeled in this app.
Entities#
Book#
| Field | Type |
|---|---|
| name | String |
| genre | String |
| authorId | String |
Author#
| Field | Type |
|---|---|
| name | String |
| age | Number |
You can find these models here. This is an example on how it looks like:
For more information on how to set up models with MongoDB check their official docs