MySQL returned us question
In the docs it says that you can’t get the inserted ID from MySQL but is that because the returned ID isn’t reliable or is there another reason?
.returning() in insert query?returning clause, that's why you can't return inserted ID with insert queryconst row = await db.insert… and then console.log(row) there is the insertId property returned (I think that’s the name, I’m on my phone so not 100% sure). .returning()returningconst row = await db.insert…console.log(row)insertId