2023-03-29

MongoDB - Array of strings to comma-separated string

 db.COLLECTION_NAME.aggregate([

    {$addFields: {

        "CONCATENATED_STRING": {$reduce: {

            "input": "$ARRAY_OF_STRINGS_FIELD_NAME",

            "initialValue": "",

            "in": {

                "$concat": [

                    "$$value",                    

                    "$$this",

                    ", ",

                ]

            }

        }}

    }}    

]);

No comments:

Post a Comment