anyone using typescript with prisma? Do you get ty...
# orm-help
d
anyone using typescript with prisma? Do you get type errors when using a string for schema delegation? ie
ctx.db.query.foo({ where: { id: 1 }}, '{ bar }');
k
There's a missing
}
before the comma.
d
@kratam thanks, this is just an example