In my angular2 project i need to search data from the database using loopback how can i implement this using "wildcard" query in find(). Thanks in advance. Please help me.
Here is my query
this.model.find({
"where": {
"wildcard": {
"name": "*a*"
}
}
})
My result is an empty array.Please help me.