Skip to content

Commit 9b9a4a8

Browse files
author
Vincent Ip
authored
chore(docs): update links to new prisma documentation (#1391)
1 parent 826521d commit 9b9a4a8

1 file changed

Lines changed: 8 additions & 8 deletions

File tree

website/content/030-pluginss/010-prisma/030-runtime.mdx

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -433,7 +433,7 @@ Inlined creates are very similar to top-level ones but have the important differ
433433

434434
**Underlying Prisma Client Function**
435435

436-
[`create`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#create)
436+
[`create`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#create)
437437

438438
#### Options
439439

@@ -600,7 +600,7 @@ The ability for list fields to be [filtered](#filtering), [ordered](#ordering),
600600

601601
**Underlying Prisma Client function**
602602

603-
[`findOne`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#findone)
603+
[`findOne`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#findone)
604604

605605
#### Options
606606

@@ -688,7 +688,7 @@ Allow clients to update one particular record at a time of the respective Prisma
688688

689689
**Underlying Prisma Client function**
690690

691-
[`update`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#update)
691+
[`update`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#update)
692692

693693
#### Options
694694

@@ -948,7 +948,7 @@ Allow clients to update or create (aka. insert) one particular record at a time
948948

949949
**Underlying Prisma Client function**
950950

951-
[`upsert`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#upsert)
951+
[`upsert`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#upsert)
952952

953953
#### Options
954954

@@ -983,7 +983,7 @@ Allow clients to delete one particular record at a time of the respective Prisma
983983

984984
**Underlying Prisma Client function**
985985

986-
[`delete`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#delete)
986+
[`delete`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#delete)
987987

988988
#### Options
989989

@@ -1107,7 +1107,7 @@ Allow clients to fetch multiple records at once of the respective Prisma model.
11071107

11081108
**Underlying Prisma Client Function**
11091109

1110-
[`findMany`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#findMany)
1110+
[`findMany`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#findMany)
11111111

11121112
#### Options
11131113

@@ -1188,7 +1188,7 @@ Allow clients to update multiple records of the respective Prisma model at once.
11881188
11891189
**Underlying Prisma Client Function**
11901190
1191-
[`updateMany`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#updateMany)
1191+
[`updateMany`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#updateMany)
11921192
11931193
#### Options
11941194
@@ -1236,7 +1236,7 @@ Allow clients to delete multiple records of the respective Prisma model at once.
12361236

12371237
**Underlying Prisma Client Function**
12381238

1239-
[`deleteMany`](https://github.com/prisma/prisma2/blob/master/docs/prisma-client-js/api.md#deleteMany)
1239+
[`deleteMany`](https://www.prisma.io/docs/reference/tools-and-interfaces/prisma-client/crud#deleteMany)
12401240

12411241
#### Options
12421242

0 commit comments

Comments
 (0)