TLDR How to use data from one stream provider to call another?
Background of the Problem
Hello! I have this Firebase Realtime Database Structure
Each user's Group IDs are stored here. They can be accessed to then query the following 'Groups' Json tree.
Here there is all the data for a group, which multiple users can access. The structure is like this to avoid data redundancy.
Problem
I am using the Provider package. To get the user data, it works like a charm:
- I use a Stream Provider
- I query the database with an onValue function --> Stream.
- I map the data from that Stream to a class and transform it to that class's structure using fromMap() factory function
Stream<FrediUser> currentUserDataStream() {
var userRef =
FirebaseDatabase.instance.reference().child('Users').
child(currentUserID!);
return userRef.onValue.map((event) =>
FrediUser.fromMap(event.snapshot.value));
}
That works if I have to access the User map and its nested children. But as illustrated in the example above, what happens if I have to access the User map first and then the Groups map? I want to do all of this using stream providers.