MongoDB
 sql >> Database >  >> NoSQL >> MongoDB

Proietta diverse strutture incorporate con lo stesso nome

Puoi utilizzare $ifNull operatore a $project il campo "nome host".

cmp = db['computers'].aggregate([
    {"$project": { 
        "u_hostname": {
            "$ifNull": [
                "$hostnames.name", 
                { "$map": { 
                    "input": {"$literal": ["A"]}, 
                    "as": "el", 
                    "in": "$hostname"
                }}
            ]
        }, 
        "_id": 0, 
        "u_ipv4": "$addresses.ipv4"
    }},
    {"$unwind": "$u_hostname"}
])