I created a Firestore database. I am learning. How can I access a map into a map, the image help me to explain my doubt.
I can do a query like this in this case scenario:
->recipes
-->idRecipe
--->ingredients
---->0
----->rice
---->1
----->meat
Query query = recipesRef.whereArrayContains("ingredients", "rice");
But how I can do in this case scenario?
Firestore structure:
How can I find the values of -> ingredient (name:rice)