I want to load comments from my firebase app into app
Now I want to extract details of user: (profile picture and username) with the id highlighted in the image.
For comments I could do something like this
DatabaseReference commentsRef = FirebaseDatabase.getInstance().getReference("comments").child(video.id);
But I couldn't find a clue on getting user details. Can you help me?