({ args, query }: QueryHookParams<Prisma.UserMcpServerUpdateManyArgs>)
| 308 | return query(args); |
| 309 | }, |
| 310 | async updateMany({ args, query }: QueryHookParams<Prisma.UserMcpServerUpdateManyArgs>) { |
| 311 | assertNoUserMcpServerRelationAccess(args, 'userMcpServer.updateMany'); |
| 312 | requireAuthenticatedUser(user, 'userMcpServer.updateMany'); |
| 313 | assertNoIdentityMutation((args as UserMcpServerUpdateArgs).data, 'userMcpServer.updateMany'); |
| 314 | return query(scopeUserMcpServerWriteManyArgs(args, user, 'userMcpServer.updateMany')); |
| 315 | }, |
| 316 | async updateManyAndReturn({ args, query }: QueryHookParams<Prisma.UserMcpServerUpdateManyAndReturnArgs>) { |
| 317 | assertNoUserMcpServerRelationAccess(args, 'userMcpServer.updateManyAndReturn'); |
| 318 | requireAuthenticatedUser(user, 'userMcpServer.updateManyAndReturn'); |
nothing calls this directly
no test coverage detected