``` // Update name of a specific user and retrieve...
# orm-help
t
Copy code
// Update name of a specific user and retrieve the `id`
prisma.mutation.updateUser({ where: { id: 'abc' }, data: { name: 'Sarah' } }, '{ id }')
this is example i found on prisma binding how to query single field of database(not sure i worded it correct or not) how it works, is it query all fields then filter it out or is it query only that field?
m
it only queries this field
👍 1