Hi all,
I really like the built-in REST API functionality of pydal very powerful and convenient.
I'd like to have wildcard search capability on the api, which AFAIK can't be done with `contains`.
However Field objects have the `ilike` and `like` methods which do support wildcards and which `contains` uses under the hood.
I modified pydal trivially by just adding "ilike" to the keywords `RestAPI.search` recognizes and it seems to work fine.
Is there a specific reason there is no support for "like" and "ilike" in the RestAPI?
Thanks
Vincent