Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ Note that you **cannot** use `select` and `include` _on the same level_. This me
<Cmd>

```ts
// The follwing query returns an exception
// The following query returns an exception
const getUser = await prisma.user.findUnique({
where: {
id: 19,
Expand Down Expand Up @@ -347,7 +347,7 @@ Please either use `include` or `select`, but not both at the same time.
Instead, use nested `select` options:

```ts
// The follwing query returns an exception
// The following query returns an exception
const getUser = await prisma.user.findUnique({
where: {
id: 19,
Expand Down