how many reads are counted for the following query?
fireClient.Collections(ctx).GetAll()
will the following query results in 1 read or will it depends on number of subcollections
fireclient.Collection("users").Doc("user_id").Collections(ctx).GetAll()
I am trying to list down the subcollections within a document. I want to know the pricing for the same?