- One potential structure (needs to be built in the Compass and saved in the database):
DB: ironhackers
|--> collection: developers {
{
name: "jack",
age: "34",
favoriteTeams: ["miami heat", "sacramento kings"],
favoriteMovie: {
title: "The Godfather",
mainActors: ["Al Pacino", "Marlon Brando", "Diane Keaton"]
,
favoriteSongs: [
{
singer: "first last name",
songTitle: "song title 1"
},
{
singer: "first last name",
songTitle: "song title 1"
}
]
},
{
name: "jane",
age: "31",
favoriteTeams: ["miami heat", "sacramento kings"],
favoriteMovie: {
title: "The Godfather",
mainActors: ["Al Pacino", "Marlon Brando", "Diane Keaton"]
,
favoriteSongs: [
{
singer: "first last name",
songTitle: "song title 1"
},
{
singer: "first last name",
songTitle: "song title 1"
}
]
}
} # closes collection developers