You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
To perform any paginated queries the data requires sorting. Currently any query will give results in a random order, and querying with a limit will always rerun until all data is fetched.
Secondly, cross referencing entities to fetch is difficult without $in filters. Currently I need to perform a single fetch for my paginated results, which is not optimal.
Feature Request
To perform any paginated queries the data requires sorting. Currently any query will give results in a random order, and querying with a limit will always rerun until all data is fetched.
Secondly, cross referencing entities to fetch is difficult without
$in
filters. Currently I need to perform a single fetch for my paginated results, which is not optimal.Proposed Solution
Enable the following queries:
Sorting
In where filter
This is also useful in subscriptions.
Alternatives
No response
Related Code
No response
Additional context
No response
If the feature is accepted, would you be willing to contribute it?
The text was updated successfully, but these errors were encountered: