Groupby on multiple fields using DQL

There’s no such thing in Dgraph. You have to deal that logic in your application level.

Just a quick question on the performance of the dgraph when we fetch nodes in our application to deal with a particular logic that’s not supported yet.

Let’s say we have 10k nodes for UserStatus type. We have to fetch them all to apply the aggregation at application level. How will it impact the overall performance of dgraph if the number of nodes grow to 100k. Would it still be feasible to fetch them at once?

OR

Would it be recommended to fetch the 100k nodes in batch of 10k. Which will require 10 queries before we do the aggregation.

Thanks!