How to send right query in AutocompleteInput in react-admin?

203 Views Asked by At

I use

<ReferenceInput reference={'data-systems'} source={'masterSystemId'}>
     <AutocompleteInput optionText={"key"} optionValue={"id"}/>
</ReferenceInput>

And I expect that react-admin send query like localhost/data-systems?filter={key: <VALUE_FROM_INPUT>} BUT! really query is filter={q: <VALUE_FROM_INPUT>} that doesn't work :( Is there a way to send right fieldname?

1

There are 1 best solutions below

0
On

its need to add filterToQuery={searchText => ({ key: [searchText]}) to ReferenceInput