-
Notifications
You must be signed in to change notification settings - Fork 4
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
Enhancement based on GraphQL CRUD capabilities #16
Comments
I tested out the current master fa8438e, filtering seems to working (I'll perform extensive tests later on), but good job so far. I have a question regarding the list query type e.g |
Yes, we have thought of adding pagination after modifying and implementing the filters entirely. There are a few more tests and functions to add. |
In the pagination scenario, what mechanism do you offer the user to get the "next" page after the first page is returned? |
In dynamic systems using calculated cursor would be more appropriate. |
On the client side pages will be kept in the component state and deduplicated so we could provide support for two types of pagination:
While this has obvious challenges this is something we have implemented and we have flexibility to change |
ok, yes with offset you can see the potential for incorrect results when database state changed, but that is easiest otherwise we would need to build a local cache for it :( How is paging done at the nested level? or this only at the top level? |
/cc @ani-sha @rareddy
The text was updated successfully, but these errors were encountered: