Skip to content

Instantly share code, notes, and snippets.

@thanhdevapp
Last active November 18, 2017 01:57
Show Gist options
  • Save thanhdevapp/4570cbe1e2aeb8c472cbc160201ce037 to your computer and use it in GitHub Desktop.
Save thanhdevapp/4570cbe1e2aeb8c472cbc160201ce037 to your computer and use it in GitHub Desktop.
//FILTER
this.query[ 'fields' ] = [ 'id', 'name', 'email' ];
//WHERE
this.query.where = { or: [ { name: { like: `.*${model.keyword}.*`, options: `i` } }, { email: { like: `.*${model.keyword}.*`, options: `i` } }] };
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment