आप यह नहीं दिखाते कि आपके संग्रह में दस्तावेज़ कैसा दिखता है, लेकिन आप aggregate
ऐसा करने के लिए संग्रह विधि:
// Group by the first letter of the 'words' field of each doc in the 'test'
// collection while generating a count of the docs in each group.
db.test.aggregate({$group: {_id: {$substr: ['$words', 0, 1]}, count: {$sum: 1}}})