Can anyone assist me with implementing a "wildcard" query using loopback to search data from the database in my angular2 project? Thank you in advance for your help.
This is the query I am trying to use:
this.model.find({
"where": {
"wildcard": {
"name": "*a*"
}
}
})
Unfortunately, I am getting an empty array as the result. Any suggestions are welcome.