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
Hi, I would like to know how to get a specific document in google firestore by id
The text was updated successfully, but these errors were encountered:
Hi, I don't think it's possible atm. Only collection instances can be displayed. Probably it deserves to be implemented one day.
Sorry, something went wrong.
@kuamatzin You can select like below:
collection('your_collection') .where('__name__', '==' , 'your_document_id') .select();
@kuamatzin You can select like below: collection('your_collection') .where('__name__', '==' , 'your_document_id') .select();
Yep this one worked well for me:
collection("users").where("__name__", "==" , "USER_ID_HASH").select()
No branches or pull requests
Hi, I would like to know how to get a specific document in google firestore by id
The text was updated successfully, but these errors were encountered: