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
Currently we just re-run a query whenever one of its queried tables is updated.
This is good enough for now (based on current perf numbers and being in beta) but in the future if we need row-level reactivity some ideas are:
For single hop queries, we can run expressions in-memory against the modified/created/deleted node.
For multi-hop we of course lose the ids of the nodes we joined on. We have a few options:
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently we just re-run a query whenever one of its queried tables is updated.
This is good enough for now (based on current perf numbers and being in beta) but in the future if we need row-level reactivity some ideas are:
For single hop queries, we can run expressions in-memory against the modified/created/deleted node.
For multi-hop we of course lose the ids of the nodes we joined on. We have a few options:
The text was updated successfully, but these errors were encountered: