Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

202
Views
Question about nested lists in a nested list, Mongoose

I have this structure of Schemas and I want to create a new Item in the array of items in the List which is an Item in the array of lists of an account. Thats how it looks:

const itemsSchema = new mongoose.Schema({
  name: String,
  creator: String
});

const Item = new mongoose.model("Item", itemsSchema);

///// List Schema /////
const listSchema = new mongoose.Schema({
  name: String,
  items: [itemsSchema],
  users: [String]
})

const List = new mongoose.model("List", listSchema)

///// Account Schema /////
const accountSchema = new mongoose.Schema({
  nickname: String,
  lists: [listSchema],
});
about 4 years ago · Juan Pablo Isaza
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!