What type to use for a batch item
I'm trying to type the array used to hold queries to be batched with the batch API.
What should I put for ???
What should I put for ???
const queries: ??? = [];
queries.push(db.query.users.findMany...)
await db.batch(queries);