Skip to content
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

Needs querySnapshot #71

Open
Wiase9889 opened this issue Sep 16, 2022 · 0 comments
Open

Needs querySnapshot #71

Wiase9889 opened this issue Sep 16, 2022 · 0 comments
Labels
enhancement New feature or request help wanted Extra attention is needed

Comments

@Wiase9889
Copy link

This local implementation of the great Firebase is a great idea for offline applications especially PWAs and ELECTRON apps. But there is one key thing missing, the real-time querySnapshot. This feature is very important as it reduces the time and stress to always reload the browser to see the effect.

Example:

get(myOffersRef).then((snapshot) => {
  snapshot.forEach((child) => {
    console.log(child.key, child.val().uid);
  });
}).catch((error) => {
  console.error(error);
});
@samuk190 samuk190 added enhancement New feature or request help wanted Extra attention is needed labels Jun 7, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
enhancement New feature or request help wanted Extra attention is needed
Projects
None yet
Development

No branches or pull requests

2 participants