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
this does not work with the upcoming v3 of react-admin because:
it defaults to filterToQuery={(searchText) => ({ q: searchText })} and the q property is not handled with this dataprovider. Solution is to pass a custom filterToQuery, e.g. filterToQuery={(searchText) => ({ path: searchText })}
it will call connections with where: {ids_in: ""}}, which throws an error in the backend
The text was updated successfully, but these errors were encountered:
given a reference input:
this does not work with the upcoming v3 of react-admin because:
filterToQuery={(searchText) => ({ q: searchText })}
and theq
property is not handled with this dataprovider. Solution is to pass a customfilterToQuery
, e.g.filterToQuery={(searchText) => ({ path: searchText })}
where: {ids_in: ""}}
, which throws an error in the backendThe text was updated successfully, but these errors were encountered: