Replies: 1 comment 3 replies
-
Also tried creating an exception in the Firestore Database, but I don't think this is it, since I am looking for a subcollection |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hello,
I have a Firebase Database structure as follows:
users(collection)/user_id(documents)/pets(collection)/pets_id(document)
Trying to get query working for collecting all pets documents of a specific user. I got it working on the firebase query builder

and I can get query working for the first layer of collections users:
but I do not get any subcollections even thou
all_descendants
is true(by default)I also tried building query for subcollections directly as in query builder, but get an error
but get "Nil" error

Am I doing something wrong here? Any help would be greatly appreciated! If this doesn't work I could restructure my database with not having any subcollections ever, but I think there should be a way to get this working
Beta Was this translation helpful? Give feedback.
All reactions