I have a firestore which will look like this: Cloud Firestore
So in few word I have some users which can log in to my application and create recipe. And in 'My recipe' page I will have the list of recipes that a user is having. So I have 1 collection 'User' and inside that 1 collection 'Recipes' with multiple recipes.
I have implemented the Firestore Google login and this is working as I get uid. etc... THis is inside auth.service.ts:
and I want to create a recipes.service.ts with a methode getRecipes() which will getRecipes under users/$(user.uid)/Recipes
anyone can help here? I dont find any tutorial to display data with subcollection.