({ args, query }: QueryHookParams<Prisma.UserMcpServerCreateManyArgs>)
| 292 | return query(args); |
| 293 | }, |
| 294 | async createMany({ args, query }: QueryHookParams<Prisma.UserMcpServerCreateManyArgs>) { |
| 295 | assertNoUserMcpServerRelationAccess(args, 'userMcpServer.createMany'); |
| 296 | assertCreateDataForUser((args as UserMcpServerCreateArgs).data, user, 'userMcpServer.createMany'); |
| 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'); |
nothing calls this directly
no test coverage detected