I am using loopback
as a backend now I wish to be able to search across all fields in the table
For instance, take the following table fields:
id, name, title, created, updated
Now say I want to search across the table using the following string "nomad
"
However, I am unsure how to structure the query
I have attempted:
{"where": {"keywords": {"inq": ["nomad"]}}}
However, this just returns all results
So how do I do this? :)
If it matters my database is a postgresql