How to get a new inserted row id

After inserting a new row, I'd like to get the id.
The response doesn't give me the newly created id.
Where can i find the one??

const resonse = await supabase.from("article").insert({title: 'hello'})
Was this page helpful?