From b43fe0381970faaf820d3cf3759de883e66bb0f7 Mon Sep 17 00:00:00 2001 From: Shahriar Shojib Date: Thu, 5 Dec 2024 07:35:57 -0800 Subject: [PATCH] Update content/200-orm/200-prisma-client/150-using-raw-sql/200-raw-queries.mdx Co-authored-by: Jon Harrell <4829245+jharrell@users.noreply.github.com> --- .../200-prisma-client/150-using-raw-sql/200-raw-queries.mdx | 1 - 1 file changed, 1 deletion(-) diff --git a/content/200-orm/200-prisma-client/150-using-raw-sql/200-raw-queries.mdx b/content/200-orm/200-prisma-client/150-using-raw-sql/200-raw-queries.mdx index cb80a2f38d..e0ff6126d1 100644 --- a/content/200-orm/200-prisma-client/150-using-raw-sql/200-raw-queries.mdx +++ b/content/200-orm/200-prisma-client/150-using-raw-sql/200-raw-queries.mdx @@ -852,7 +852,6 @@ const result = await prisma.user.aggregateRaw({ - `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). - `options`: Additional options to pass to the [`aggregate` command](https://www.mongodb.com/docs/manual/reference/command/aggregate/#command-fields). -:::info #### Caveats When working with custom objects like `ObjectId` or `Date,` you will have to pass them according to the [MongoDB extended JSON Spec](https://www.mongodb.com/docs/manual/reference/mongodb-extended-json/#type-representations).