({ args, query }: QueryHookParams<Prisma.UserMcpServerCreateManyAndReturnArgs>)
| 297 | return query(args); |
| 298 | }, |
| 299 | async createManyAndReturn({ args, query }: QueryHookParams<Prisma.UserMcpServerCreateManyAndReturnArgs>) { |
| 300 | assertNoUserMcpServerRelationAccess(args, 'userMcpServer.createManyAndReturn'); |
| 301 | assertCreateDataForUser((args as UserMcpServerCreateArgs).data, user, 'userMcpServer.createManyAndReturn'); |
| 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'); |
nothing calls this directly
no test coverage detected