We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hey, i have faced this issue with when i tried to fetch from firestore. I followed all instructions from docs.
Firestore database contains just one collection "users" with one document in it.
error occurred on:
firestore: { users: db.collection('users') },
However, if i try to fetch it manually, it'll be returned without errors
async created() { let users = await db.collection('users').get(); users.forEach(user => { console.log(user.data()); }) }
The text was updated successfully, but these errors were encountered:
Same issue, specifically does not happen with @firebase/firestore 2.0 but DOES occur on @firebase/firestore 2.0.2
EDIT: no issues with @firebase/firestore 2.0.1 either, just 2.0.2. Current workaround is to pin version 2.0.1 in your package.json
Sorry, something went wrong.
Hi, I have the exact same issue using firebase 8.0.2. Downgrading to firebase 8.0.1 solved the issue. Thank you @stamler !
#940
Make sure to search existing issues and not to ignore the template when opening issue, please! It's important for open source maintainers
No branches or pull requests
Hey, i have faced this issue with when i tried to fetch from firestore.
I followed all instructions from docs.
Firestore database contains just one collection "users" with one document in it.
error occurred on:
However, if i try to fetch it manually, it'll be returned without errors
The text was updated successfully, but these errors were encountered: