I have, let's say 100 rows. In each collection, there is an 'id' field. Let's say of the 100 rows, 20 rows have an 'id' of 10, 30 rows have an 'id' of 11 and 50 rows have an 'id' of 12. My query should return: 10 - 20 (count) 11 - 30 (count) 12 - 50 (count).
How do I write this query?