Skip to content

Commit d496d1d

Browse files
DC-5237 NestJS Guide (#7327)
* update guide prereq node version * added nestjs to sidebar * cover image added * guide created * Optimised images with calibre/image-actions * update link * lychee fixed links * note removed * title change * feedback applied * updated names to be the same * typo fix --------- Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent cf1deda commit d496d1d

19 files changed

+537
-17
lines changed

content/200-orm/200-prisma-client/150-using-raw-sql/200-raw-queries.mdx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -823,7 +823,7 @@ const result = await prisma.user.findRaw({
823823
<model>.findRaw(args?: {filter?: InputJsonObject, options?: InputJsonObject}): PrismaPromise<JsonObject>;
824824
```
825825

826-
- `filter`: The query predicate filter. If unspecified, then all documents in the collection will match the [predicate](https://www.mongodb.com/docs/manual/reference/operator/query).
826+
- `filter`: The query predicate filter. If unspecified, then all documents in the collection will match the [predicate](https://www.mongodb.com/docs/manual/reference/mql/query-predicates/).
827827
- `options`: Additional options to pass to the [`find` command](https://www.mongodb.com/docs/manual/reference/command/find/#command-fields).
828828

829829
### `aggregateRaw()`
@@ -849,7 +849,7 @@ const result = await prisma.user.aggregateRaw({
849849
<model>.aggregateRaw(args?: {pipeline?: InputJsonObject[], options?: InputJsonObject}): PrismaPromise<JsonObject>;
850850
```
851851

852-
- `pipeline`: An array of aggregation stages to process and transform the document stream via the [aggregation pipeline](https://www.mongodb.com/docs/manual/reference/operator/aggregation-pipeline).
852+
- `pipeline`: An array of aggregation stages to process and transform the document stream via the [aggregation pipeline](https://www.mongodb.com/docs/atlas/data-federation/supported-unsupported/supported-aggregation/).
853853
- `options`: Additional options to pass to the [`aggregate` command](https://www.mongodb.com/docs/manual/reference/command/aggregate/#command-fields).
854854

855855
#### Caveats

content/200-orm/800-more/400-comparisons/03-prisma-and-mongoose.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ Prisma ORM generates many [additional filters](/orm/prisma-client/queries/filter
116116

117117
**Mongoose**
118118

119-
Mongoose exposes the [MongoDB query selectors](https://www.mongodb.com/docs/manual/reference/operator/query/#query-selectors) as filter criteria.
119+
Mongoose exposes the [MongoDB query selectors](https://www.mongodb.com/docs/manual/reference/mql/query-predicates/logical/) as filter criteria.
120120

121121
## Relation filters
122122

content/800-guides/080-turborepo.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ This guide will show you how to set up Prisma as a standalone package in a Turbo
2323
- Integrating the Prisma package into other applications in the monorepo.
2424

2525
### Prerequisites
26-
- [Node.js 18+](https://nodejs.org/)
26+
- [Node.js 20+](https://nodejs.org/)
2727

2828
## 1. Set up your project
2929

content/800-guides/090-nextjs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ This guide shows you how to use Prisma with Next.js 15, a fullstack React framew
2727
You can find a [deployment-ready example on GitHub](https://github.com/prisma/prisma-examples/blob/latest/orm/nextjs).
2828

2929
## Prerequisites
30-
- [Node.js 18+](https://nodejs.org)
30+
- [Node.js 20+](https://nodejs.org)
3131
- A Vercel account (if you want to deploy your application)
3232

3333
## 1. Set up your project

content/800-guides/150-multiple-databases.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ This guide shows you how to use multiple databases using Prisma ORM in a single
2020

2121
Before you begin, make sure that you have the following:
2222

23-
- Node.js 18+ installed.
23+
- Node.js 20+ installed.
2424
- A [Prisma Data Platform account](https://pris.ly/pdp?utm_campaign=multi-client&utm_source=docs).
2525
- A Vercel account (if you plan to deploy your application).
2626

content/800-guides/180-solid-start.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Prisma ORM streamlines database access with type-safe queries and a smooth devel
1515
In this guide, you'll learn how to integrate Prisma ORM with a Prisma Postgres database in a SolidStart project from scratch. You can find a complete example of this guide on [GitHub](https://github.com/prisma/prisma-examples/tree/latest/orm/solid-start).
1616

1717
## Prerequisites
18-
- [Node.js 18+](https://nodejs.org)
18+
- [Node.js 20+](https://nodejs.org)
1919

2020
## 1. Set up your project
2121

content/800-guides/190-sveltekit.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ In this guide, you'll learn to integrate Prisma ORM with a Prisma Postgres datab
1717

1818

1919
## Prerequisites
20-
- [Node.js 18+](https://nodejs.org)
20+
- [Node.js 20+](https://nodejs.org)
2121
- [Svelte VSCode extension](https://marketplace.visualstudio.com/items?itemName=svelte.svelte-vscode) (Recommended by Svelte)
2222

2323

content/800-guides/200-clerk-nextjs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this guide you'll wire Clerk into a brand-new [Next.js](https://nextjs.org/)
1616

1717
## Prerequisites
1818

19-
- [Node.js 18+](https://nodejs.org)
19+
- [Node.js 20+](https://nodejs.org)
2020
- [Clerk account](https://clerk.com)
2121
- [ngrok account](https://ngrok.com)
2222

content/800-guides/220-astro.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ Prisma ORM offers type-safe database access, and [Astro](https://astro.build/) i
2424
In this guide, you'll learn to integrate Prisma ORM with a Prisma Postgres database in an Astro project from scratch. You can find a complete example of this guide on [GitHub](https://github.com/prisma/prisma-examples/tree/latest/orm/astro).
2525

2626
## Prerequisites
27-
- [Node.js 18+](https://nodejs.org)
27+
- [Node.js 20+](https://nodejs.org)
2828
- [Astro VSCode extension (recommended)](https://marketplace.visualstudio.com/items?itemName=astro-build.astro-vscode)
2929

3030
## 1. Set up your project

content/800-guides/230-betterauth-nextjs.mdx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ In this guide, you'll wire Better Auth into a brand-new [Next.js](https://nextjs
1616

1717
## Prerequisites
1818

19-
- [Node.js 18+](https://nodejs.org)
19+
- [Node.js 20+](https://nodejs.org)
2020
- Basic familiarity with Next.js App Router and Prisma
2121

2222
## 1. Set up your project

0 commit comments

Comments
 (0)