Bands should sit in a separate collection: bands: { { _id: ... bandName: String bandSocial: { youtube: ... facebook: ... instagram: ... } } } Profile Model would then look at Bands collection: Profile: { location: bio: ... bands: { ref: bands } }
Bands should sit in a separate collection:
bands: {
{
_id: ...
bandName: String
bandSocial: {
youtube: ...
facebook: ...
instagram: ...
}
}
}
Profile Model would then look at Bands collection:
Profile: {
location:
bio:
...
bands: {
ref: bands
}
}