I'm building a mobile app (currently distributed only as a web app) where I'm trying to load data about sports games from my Firestore backend. I have a page with a backend query which queries a collection called "user_games" that has all the games for a specific user. A column in the page has children generated from a variable that holds the "user_games" collection. Each child has another backend query which fetches more information about the game from a "games" collection using a reference stored in each "user_games" document.
Issue faced - Only some of these games are shown on the page, whereas others are not shown i.e some children are not loading.