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

224
Views
Bus location schema design in mongoose

I am developing a bus ticket booking app in node.js. I want to design a location schema in such a way that whenever user enters a from-location like: philadelphia then in the to-location dropdown all the other location should appear like new jersy or newyork except philadelphia.

const locationSchema = new mongoose.Schema({
  location:{
    name: {
      type: String,
      required: true,
      subLocation: [String],
      //Should I add type = 1
    }
  }
});
over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

You can use MongoDB $ne (not equal to) method

 db.collection.find({
  "location.name": {
    $ne: req.body.fromLocation //change variable name according to requirement
  }
})

Now you can set this data in the other dropdown

Here is a working mongoplayground link

over 4 years ago · Santiago Trujillo Report
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!