Database

[{"type":"chocolate","brand":"arun","details":{"price":13,"state":"CA","quantity":120}},{"type":"chocolate","brand":"arun","details":{"price":14,"state":"CA","quantity":140}},{"type":"chocolate","brand":"ibaco","details":{"price":13,"state":"CA","quantity":120}},{"type":"chocolate","brand":"ibaco","details":{"price":14,"state":"WA","quantity":140}},{"type":"vanilla","brand":"arun","details":{"price":12,"state":"CA","quantity":145}},{"type":"vanilla","brand":"arun","details":{"price":13,"state":"CA","quantity":104}},{"type":"vanilla","brand":"ibaco","details":{"price":12,"state":"CA","quantity":145}},{"type":"vanilla","brand":"ibaco","details":{"price":13,"state":"WA","quantity":104}}]

Query

db.collection.aggregate([{$facet:{type:[{$group:{_id:"$type",counts:{$sum:1}}}],type_brand:[{$group:{_id:{type:"$type",brand:"$brand"},counts:{$sum:1}}}],type_brand_state:[{$group:{_id:{type:"$type",brand:"$brand",state:"$details.state"},counts:{$sum:1}}}]}}])

Result