Prisma Client is an auto-generated, type-safe and modern JavaScript/TypeScript ORM for Node.js that's tailored to your data. Supports PostgreSQL, CockroachDB, MySQL, MariaDB, SQL Server, SQLite & MongoDB databases.
Last release 6 days ago
27 Aug 2026
Ships fairly regularly
a new release about every 1 weeks
Nearly every release is documented
notes for 60 of the last 60 stable releases
3 versions withdrawn
withdrawn after publishing
7 years old
10653 releases · first in 2020
One column per quarter.
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Today, we are excited to share the 2.23.0 stable release 🎉
🌟 Help us spread the word about Prisma by starring the repo or tweeting about the release. 🌟
Starting today, you can now filter rows by data inside a Json type. JSON filtering support is available in PostgreSQL and MySQL. You can try it today by adding the filterJson preview flag to your generator block. This has been one of our most popular feature requests, so we're very excited to be getting it into your hands!
To get an idea of how JSON filtering works, let's see how you might query application logs stored in your database. Given the following Prisma schema:
generator client {
provider = "prisma-client-js"
previewFeatures = ["filterJson"]
}
model Log {
id Int @id @default(autoincrement())
level Level
message String
meta Json
}
enum Level {
INFO
WARN
ERROR
}
And the following records in your PostgreSQL database:
| id | level | message | meta |
|---|---|---|---|
| 2 | INFO |
application listening on port 3000 | {"host": "bob"} |
| 3 | INFO |
upgrading account | {"host": "alice", "request_id": 10} |
| 4 | INFO |
charging customer | {"host": "alice", "amount": 20, "request_id": 10} |
| 5 | ERROR |
credit card expired | {"host": "alice", "amount": 20, "request_id": 10} |
| 6 | INFO |
signing up | {"host": "bob", "request_id": 1} |
| 7 | INFO |
application listening on port 3000 | {"host": "alice"} |
| 8 | INFO |
signed up | {"host": "bob", "email": "[email protected]", "request_id": 1} |
We can now filter logs by the data inside the meta field. Let's query by the request_id inside the meta field to track the journey that led up to the error.
We can write the following query:
const logs = await prisma.log.findMany({
where: {
meta: {
// path looks for the request_id key inside meta
path: ["request_id"],
// and we select rows whose request_id is 10
equals: 10,
},
},
orderBy: {
id: "asc",
},
});
Giving us the entire journey of this person's request:
[
{
id: 3,
level: 'INFO',
message: 'upgrading account',
meta: { host: 'alice', request_id: 10 }
},
{
id: 4,
level: 'INFO',
message: 'charging customer',
meta: { host: 'alice', amount: 20, request_id: 10 }
},
{
id: 5,
level: 'ERROR',
message: 'credit card expired',
meta: { host: 'alice', amount: 20, request_id: 10 }
}
]
Please note that the path syntax varies depending on the database. We pass the path query directly to the database, so there will be syntactical differences.
For example, querying by key in Postgres is request_id, while in MySQL it would be $.request_id. Please consult your database's documentation to learn more.
If you run into any questions or have any feedback, we're available in this issue.
📚 Documentation: Working with Json fields
prisma db seedIn previous versions, a seed file could only be executed as a script. prisma db seed was simply executing the script by either calling node ./prisma/seed.js for JavaScript or ts-node ./prisma/seed.ts for TypeScript.
Now, you can directly export a function that Prisma executes on your behalf. Here's the rules that describe the new behavior: Prisma checks if the seed file has ...
seed and executes itIf there's no function exported as seed or via a default export, the behaviour of prisma db seed is exactly the same as before, meaning it will simply be executed as a script file.
groupBy queries are now prefixed with an underscoreThe options in groupBy are now prefixed with an underscore, for example:
// API
const result = await prisma.user.groupBy({
by: ['name'],
- count: true,
+ _count: true,
})
Here's an overview of the exact changes of each option:
Before 2.23.0 |
2.23.0 and later |
|---|---|
count |
_count |
max |
_max |
min |
_min |
avg |
_avg |
sum |
_sum |
Note that this also changes the names of the fields in the objects that are returned by Prisma Client. For example, in the above case you now access the returned count value like so:
- console.log(result.count)
+ console.log(result._count)
We made this change to avoid clashes with user-defined fields. You can learn more about the problem in these issues.
We're sorry for the inconvenience! If you have any questions or need any help, please reach out in this discussion.
aggregate queriesWith the changes to groupBy discussed above and recent features like orderBy an aggregate, we took this opportunity to unify min, max, avg, sum and count keywords across Prisma Client queries.
const result = await prisma.user.aggregate({
- avg: {
+ _avg: {
age: true,
},
})
- result.avg
+ result._avg
Similar to groupBy, this is the case for all of our aggregations:
Before 2.23.0 |
2.23.0 and later |
|---|---|
count |
_count |
max |
_max |
min |
_min |
avg |
_avg |
sum |
_sum |
This is not a breaking change. The aggregate queries you wrote prior to 2.23.0 will continue to work as expected. We ask that you make adjustments when you can to future-proof your application.
If you have any questions or need any help, please reach out in this discussion.
dbgenerated("gen_random_uuid()::TEXT")Option::unwrap() on a None value Error: Invalid data source URL, see https://www.prisma.io/docs/reference/database-reference/connection-urls in 2.22.0Huge thanks to @Sytten, @schiller-manuel, @mongolyy, @paularah, @Iamshankhadeep, @meeq for helping!
Learn about the latest release and other news from the Prisma community by joining us for another "What's new in Prisma" livestream.
The stream takes place on Youtube on Thursday, May 20 at 5pm Berlin | 8am San Francisco.
Save the date for Prisma Day 2021 and join us for two days of talks and workshops by the most exciting members of the Prisma community.
We look forward to seeing you there!
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version
Nothing published for this version