1const getResults = (options) => {
2 let query = knex('table');
3 if (options.where) {
4 query = query.where('franchisee_name', 'like', '%jackmarker%');
5 }
6
7 if (options.other) {
8 query = query.where('company', 'like', '%marker%');
9 }
10
11 return query.select();
12};