I am new to firestore. I want to get the name from a different collection by using join query by ID. How can I do that in firestore?
Here is some sample collection.<
Firestore has no join queries. If you want to combine the data from two documents, you will have to query them individually, then compose your response based on the data from both.