I have a list of math topics as documents in firebaseFirestore. The objects of these topics (documents) have a field called, rootTopic that can be used to categorize them into groups.
I would like to query the collection of these topics (documents) and display them in groups using a recyclerView-in-recyclerView as seen below
THE CHALLENGE IS:
I am not quite sure how best to dynamically query and group these topics(documents). Please assist with hints or snippets on how to achieve this.
There are two ways to query the data you want:
In any case I would suggest reading the documentation on queries and sorting cause it's pretty well explained there.