Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR TYPESCRIPT

adonis where ilike

const term = request.input('term');
const posts = await Post.query().where('title', 'LIKE', '%'+term+'%').fetch()
console.log(posts);
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #adonis #ilike
ADD COMMENT
Topic
Name
1+9 =