returning insert values undefined with drizzle http sqlite proxy
Hey, I just ran into an issue while using
drizzle-orm/sqlite-proxy
when used with the returning() statement.
This is what my db client looks like: `
And this is what my durable object method looks like:
What am I doing wrong here? The ID field of the "returning" insert query is undefined for some reason even though my durable object method returns it correctly1 Reply
This is my database query:
but logging it just shows
{ id: undefined }
even though the result
from the query is { rows: [ { id: 'Du27aJydA1CgmKMxaxTXS' } ] }