I am using api express to connect to a database on hostbuddy.
I need to do a search to find a name, that part is simple. the problem I have is that the where requires exact match to the request.
I need to search on partial name matches. The column "FullName" in the database table has the full name "John Doe" but I need to find it by just "John" or "Doe". Or return everything that contains "John" or "Doe".
How do I add this to the service?