If have a collection like this
Shop(Collection):
-shopId(Document)
-name
-adresse
-itemSold (Nested Collection)
-itemId
-....
-....
how can i write a query in flutter that will return me only the shop that have a specific itemId in itemSold collection.
Its this gonna cost many read?
How are you handling that kind of tree on your side i am pretty new in noSQL database. Im use to traditionnal database.