-
Notifications
You must be signed in to change notification settings - Fork 79
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUG/FEATURE] Possibility to create subcollections, and strange behavior on how to query them? #332
Comments
Update: |
Okay, looking at your code, I actually think it's doing it correctly. It looks like your latter guess must be correct: it is taking the main collection ID and using it as the parent to which all subcollections are inspected with the query. I'm going to leave this open for more discussion and for anyone else to chime in, but if I'm reading the Firebase website correctly, that's how it should work for the REST API, at least. |
I'm reworking the Firestore part of the plugin and as it turns out, there's a new (or perhaps old and I missed it) way to create collections and subcollections via the REST API. I will implement it and close this when I get to it, just updating to let you know! |
Nice thanks for the info, and as always great work on this! |
Hello there, just to say that in my current project I am able to create sub-documents - and therefore sub-collections - and then retrieve them:
|
Yes, that is a known, albeit somewhat of a hack, way to do it. There's an explicit function for it that I have not yet implemented. It's fine (I personally think) to do it that way, but I'd rather implement the explicit function. |
And queries don't work with subdocuments because of the Firebase
|
Hm. I wonder if creating it sort of the "normal" way would fix that. I'm actually not sure - I hadn't realized that. You can definitely do a query that queries over everything in a single collection, but that's not necessarily what anyone wants, since it might be a sub-collection. |
Describe the bug
As requested by KyleTheCoder an issue about the unexpected but working method.
I had a few top-level collections before, but I changed to a subcollection structure so I have {collection/document/subcollection/documents} structure.
Now when it comes to queries you would expect that you would have to feed the path into it to get to the subcollection but this doesn't work. Every subcollection with the same name seems to be joined in the backend and treated as a top-level connection which means you have to query the subcollection directly and not include any path.
To Reproduce
Add subcollection
To create a subcollection dynamically create a new document but instead of referencing a single collection as the collection reference feed in a path to the subcollection. as an example: {main-collection/document_id/sub-collection}
Query this collection by issuing a query as if it were a top-level collection, doing a path to the collection throws an error
Expected behavior
I would have expected it to need a path to the collection
Environment:
-Windows11
The text was updated successfully, but these errors were encountered: