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

188
Vistas
MongoDB conditional if else if with exists

I am stuck in a query, my case is

if user id exists then user id
else if user name exists then user name
else if user email exists then user email
else ''

Here, is my code.

$project: {
    ..... other fields,
    'userDetail': {
        $cond: {
            if: {
                $exists: ['$user.id']
            },
            then: '$user.id',
            else: {
                $cond: {
                    if: {
                        $exists: ['$user.name']
                    },
                    then: '$user.name',
                    else: {
                        $cond: {
                            if: {
                                $exists: ['$user.email']
                            },
                            then: '$user.email',
                            else: '',
                        }
                    },
                }
            }
        }
    }
}

Since, $exists don't work on this. Can anybody, help me finding the solution to this problem? Also, if user.id is '' (empty string) & user.name is "Marcus". I want the result to return user.name.

over 4 years ago · Santiago Trujillo
3 Respuestas
Responde la pregunta

0

Query

  • if id is false or empty string, try the name, else if name false or empty string, try the email, else ""
  • false are all not-exists/null/false
  • the types of those fields are not booleans, so you are safe to use this way

*in case you really needed the $exist for example you wanted to keep the null or the false values, you could use this {"$eq":[{"$type":"$user.id"}, "missing"]}

Test code here

aggregate(
[{"$set":
  {"userInfo":
   {"$switch":
    {"branches":
     [{"case":{"$and":["$user.id", {"$ne":["$user.id", ""]}]},
       "then":"$user.id"},
      {"case":{"$and":["$user.name", {"$ne":["$user.name", ""]}]},
       "then":"$user.name"},
      {"case":{"$and":["$user.email", {"$ne":["$user.email", ""]}]},
       "then":"$user.email"}],
     "default":""}}}}])
over 4 years ago · Santiago Trujillo Denunciar

0

If I've understood correctly (and based on your example) you can use a query like this:

The trick here is to use ifNull instead of $exists.

db.collection.aggregate([
  {
    "$project": {
      "userDetail": {
        "$cond": [
          {
            "$ifNull": [
              "$user.id",
              false
            ]
          },
          // user id exists
          "$user.id",
          // user id no exists
          {
            "$cond": [
              {
                "$ifNull": [
                  "$user.name",
                  false
                ]
              },
              // user name exists
              "$user.name",
              // user name no exists
              {
                "$cond": [
                  {
                    "$ifNull": [
                      "$user.email",
                      false
                    ]
                  },
                  // user email exists
                  "$user.email",
                  // user email no exists
                  ""
                ]
              }
            ]
          }
        ]
      }
    }
  }
])

Example here

over 4 years ago · Santiago Trujillo Denunciar

0

You can use the nested $ifNull operator, by checking nested condition,

  {
    $project: {
      userDetail: {
        $ifNull: [
          "$user.id",
          {
            $ifNull: [
              "$user.name",
              { $ifNull: ["$user.email", ""] }
            ]
          }
        ]
      }
    }
  }

Playground

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