With Knex JS - Can all elements from the row being updated be retrieved in a single query that combines both update and select operations? Currently, only the id of the updated row is returned by the update operation.
let query = await knex('items').select('id', 'customerId', 'itemId').where('id', id).update({ inactive: true })
Appreciate your help!