Empresas
Empleos
  • Sobre nosotros
  • Soluciones
    • Publicación de vacantes
      Publica tu vacante y recibe candidatos calificados en 48h.
    • Evaluación de candidatos
      500+ pruebas técnicas y psicológicas, más anti-fraude.
    • Headhunting
      Búsqueda ejecutiva a la medida de principio a fin.
    • Nómina + EOR
      Dispersión de nómina y EOR en más de 15 países de LATAM.
  • Precios
  • Empleos

0

230
Vistas
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 Respuestas
Responde la pregunta

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 Denunciar
Responde la pregunta
Encuentra empleos remotos

¡Descubre la nueva forma de encontrar empleo!

Top de empleos
Top categorías de empleo
Empresas
Publicar vacante Precios Comercial
Legal
Términos y condiciones Política de privacidad
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Recomiéndame algunas ofertas
Necesito ayuda