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
When doing GET_LIST and GET_MANY_REFERENCE, ra-data-hasura generates a WHERE object to pass in for the select * query.
However, it does not do this for the count (*) that it does as part of the same request.
As a result, incorrect data is shown (for example: in pagination) where there might only be a few items to show because of the where restrictions but the total count shown in the pagination table is the number of items in the entire table.
The text was updated successfully, but these errors were encountered:
…2100, hasura#2741, hasura#2771) (hasura#2727)
* filter for count in GET_LIST and GET_MANY_REFERENCE
* update deps, add httpClient argument, release new version
When doing
GET_LIST
andGET_MANY_REFERENCE
, ra-data-hasura generates aWHERE
object to pass in for theselect *
query.However, it does not do this for the
count (*)
that it does as part of the same request.As a result, incorrect data is shown (for example: in pagination) where there might only be a few items to show because of the
where
restrictions but the total count shown in the pagination table is the number of items in the entire table.The text was updated successfully, but these errors were encountered: