Closed gauthierm closed 1 year ago
This type expects a top-level filter as well as a filter in the params. React Admin only sends the filter in params like:
filter
{ method: 'getList', resource: 'posts', params: { pagination: { page: 1, perPage: 10 }, sort: { field: 'id', order: 'ASC' }, filter: {} } }
The top-level filter property should be removed so type checks work properly.
Good shout, removing now!
Removed in ra-data-simple-prisma@3.1.2
This type expects a top-level
filter
as well as afilter
in the params. React Admin only sends the filter in params like:The top-level
filter
property should be removed so type checks work properly.