TypeError: Seems like the schema generic is missing - did you forget to add it to your DB type?
How can I solve the following generic error relating to the
I'm trying to create an adapter that accepts a generic schema to instantiate a
I've created the schema that is needed for this adapter, but how can I satisfy typescript when running
db.query.users in my code below?I'm trying to create an adapter that accepts a generic schema to instantiate a
PostgresJsDatabase instance, or colloquially db.I've created the schema that is needed for this adapter, but how can I satisfy typescript when running
db.query.user.findFirst()?