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

115
Vistas
Mongoose allow a key to exist only if another is set to a certain value

I have a collection which describes requests. It looks like this:

const requestSchema = mongoose.Schema({
  status: {
    type: String,
    required: true,
    enum: ["available", "failed", "succeed"],
  },
  errorCode: { type: String , required : (when status is failed)},
});

My goal is to require errorCode only if status is set to 'failed' and don't allow it to exist otherwise. And if possible to have it removed when status is changed to 'succeed' for example. I can't quite find an answer anywhere.

about 4 years ago · Juan Pablo Isaza
1 Respuestas
Responde la pregunta

0

You could pass a function to required to make errorCode required only if status is equal to "failed", like so:

const requestSchema = mongoose.Schema({
  status: {
    type: String,
    required: true,
    enum: ["available", "failed", "succeed"],
  },
  errorCode: {
    type: String,
    required: function () {
      return this.status === "failed";
    },
  },
});

To remove it when status changes to "succeed", or to any other value than "failed", you can use pre method, like so:

requestSchema.pre("save", async function (next) {
  if (this.status !== "failed") { // change it as you want
    this.errorCode = "";
  }
  next();
});
about 4 years ago · Juan Pablo Isaza 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