peter
08/01/2018, 5:21 PMprisma-bindings
with an example query such as
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?matic
08/01/2018, 5:26 PMinfo
parameter empty to get all scalar fields by defaultpeter
08/01/2018, 5:30 PM