MongoDB
 sql >> Base de données >  >> NoSQL >> MongoDB

comment convertir un tableau en objet dans MongoDB

J'ai trouvé la solution.

{
            $project: {
                "content": {
                    "$arrayToObject": {
                        "$map": {
                            "input": "$content",
                            "as": "el",
                            "in": {
                                "k": "$$el._id",
                                "v": "$$el"
                            }
                        }
                    }
                }
}