``` async function create(data: NewBusiness) { return client.insert(business).values(data) } ``` returns ``` headers: [], types: {}, fields: [], rows: [], rowsAffected: 1, insertId: '0', size: 0, statement: ... ``` I need Id. Tried to add `.execute()` a the end but same thing.