Is it possible to do multiple orderBy() columns?
knex .select() .table(\'products\') .orderBy(\'id\', \'asc\')
The orderBy() chainable on
You can call .orderBy multiple times to order by multiple columns:
knex .select() .table('products') .orderBy('name', 'desc') .orderBy('id', 'asc')