when using `prisma-bindings` with an example query...
# orm-help
p
when using
prisma-bindings
with an example query such as
Copy code
prisma.mutation.updateUser({ where: { id: 'cjcdi63j80adw0146z7r59bn5' }, data: { name: 'Sarah' } }, '{ id }')
how can I specify to receive the entire
User
object back as the selection set (ideally without specifying each field)? fragments?
m
You can leave the
info
parameter empty to get all scalar fields by default
p
thank you 🙂
prisma green 1