Here's my MongoDB collection:
{
    "_id" : ObjectId("515d8f53175b8ecb053425c2"),
    "category" : "Batteries",
    "products" : [
        {
            "brand" : "Duracell",
            "item" : [
                "AA",
                "AAA"
            ]
        },
        {
            "brand" : "Everyday",
            "item" : [
                "9V",
                "AA",
                "12V"
            ]
        }
    ]
}
The output that I need is
1) Unique list of all items
{["AA", "AAA", "9V", "12V"]}
and 2. unique list of items per product
{
    "category" : "Batteries",
    "item": ["AA", "AAA", "9V", "12V"]
}
I'm very new to MongoDB, and I tried different aggregations functions and nothing seems to work. Please help.
 
     
     
     
     
    