You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
There should be an option to suppress/allow this happenstance, because in my case my document won't exist until it is created. This is expected as part of the design of the app, as the app is checking to see if the result of the query returns a valid Firestore object or not.
If not, there is logic that checks against empty or a length of 0 for that document, and it behaves accordingly.
Looks like the grammar is also incorrect on this one too.
This document <document name> is not exist or permission denied.
should be
The document <document name> doesn't exist or permission was denied
The text was updated successfully, but these errors were encountered:
reject(newError(`This document (${key}) is not exist or permission denied.`));
Seems to be the culprit. I think the error throwing here should be optional- or maybe exposed as a development-level warning. Wouldn't want that kind of error showing up in a prod environment. Going to play with it a see if I can't come up with a solution. Curious to know your thoughts as well.
🐛 Bug Report
When I run my vue-firestore powered app and connect it to a document inside of a collection that doesn't exist (yet) I get the error.
Expected Bevavior
There should be an option to suppress/allow this happenstance, because in my case my document won't exist until it is created. This is expected as part of the design of the app, as the app is checking to see if the result of the query returns a valid Firestore object or not.
If not, there is logic that checks against empty or a length of 0 for that document, and it behaves accordingly.
Looks like the grammar is also incorrect on this one too.
This document <document name> is not exist or permission denied.
should be
The document <document name> doesn't exist or permission was denied
The text was updated successfully, but these errors were encountered: