Skip to content

Commit

Permalink
feat(client): add .createManyAndReturn() top level method
Browse files Browse the repository at this point in the history
  • Loading branch information
Jolg42 committed May 2, 2024
1 parent 893457f commit ba05335
Show file tree
Hide file tree
Showing 32 changed files with 1,174 additions and 6 deletions.
1 change: 1 addition & 0 deletions packages/client/src/__tests__/__helpers__/dmmf-types.ts
Expand Up @@ -153,6 +153,7 @@ const dmmf: DMMF.Document = {
aggregate: 'aggregatePost',
create: 'createOnePost',
createMany: 'createManyPost',
createManyAndReturn: 'createManyPostAndReturn',
delete: 'deleteOnePost',
deleteMany: 'deleteManyPost',
findFirst: 'findFirstPost',
Expand Down
Expand Up @@ -2339,6 +2339,7 @@ export namespace Prisma {
| 'findFirstOrThrow'
| 'create'
| 'createMany'
| 'createManyAndReturn'
| 'update'
| 'updateMany'
| 'upsert'
Expand Down
Expand Up @@ -2339,6 +2339,7 @@ export namespace Prisma {
| 'findFirstOrThrow'
| 'create'
| 'createMany'
| 'createManyAndReturn'
| 'update'
| 'updateMany'
| 'upsert'
Expand Down

0 comments on commit ba05335

Please sign in to comment.