({ args, query }: QueryHookParams<Prisma.UserMcpServerUpdateArgs>)
| 302 | return query(args); |
| 303 | }, |
| 304 | async update({ args, query }: QueryHookParams<Prisma.UserMcpServerUpdateArgs>) { |
| 305 | assertNoUserMcpServerRelationAccess(args, 'userMcpServer.update'); |
| 306 | assertUserMcpServerUniqueWhereForUser(args.where, user, 'userMcpServer.update'); |
| 307 | assertNoIdentityMutation((args as UserMcpServerUpdateArgs).data, 'userMcpServer.update'); |
| 308 | return query(args); |
| 309 | }, |
| 310 | async updateMany({ args, query }: QueryHookParams<Prisma.UserMcpServerUpdateManyArgs>) { |
| 311 | assertNoUserMcpServerRelationAccess(args, 'userMcpServer.updateMany'); |
| 312 | requireAuthenticatedUser(user, 'userMcpServer.updateMany'); |
nothing calls this directly
no test coverage detected