Advertisement ยท 728 ร— 90

Posts by Prisma

Preview
Announcing Query Insights For Prisma Postgres Query Insights gives you built-in visibility into how your database queries behave in production. It is included in Prisma Postgres and works out of the box without any setup.

You can learn more in the blog ๐Ÿ‘‡
pris.ly/query-insig...

12 hours ago 0 0 0 0
Video

๐Ÿš€ We just shipped Query Insights for Prisma Postgres!

It finds slow queries and generates a prompt you can drop into your favorite AI agent to help optimize them.

Debugging queries just got a lot more fun!

12 hours ago 1 0 1 0
Preview
Raw queries Learn how you can send raw SQL and MongoDB queries to your database using the raw() methods from the Prisma Client API.

Check it out ๐Ÿ‘‡
pris.ly/query-raw

1 week ago 0 0 0 0
Post image

Ever need to run a heavily optimized query that Prisma Client doesn't support?

You can drop down to raw SQL with four methods:

โœ… $queryRaw - returns records (SELECT)
โœ… $executeRaw - returns affected row count
โœ… Plus "Unsafe" versions

1 week ago 0 0 1 0
Post image

In Prisma Next, streaming will feel just like writing plain TypeScript rather than a separate framework feature.

You'll simply build the query, execute the plan and for await the rows.

1 week ago 1 0 1 0
Preview
Rethinking Database Migrations Database migrations are brittle and they break when you're most vulnerable; when you're deploying to production. Prisma Next migrations make them explicit, verifiable and safe to retry.

Get a glimpse of what migrations will become in our latest blog

pris.ly/cFnS6ZC

1 week ago 0 0 0 0

What if database migrations worked more like Git? ๐Ÿ‘€

Thatโ€™s what weโ€™re building with Prisma Next ๐Ÿ‘‡

๐Ÿ“ˆ Migrations form a graph of schema states
โœจ Explicit before and after states for your schemas
๐Ÿ• No more time-stamp based sequence or operations

Built for humans + AI ๐Ÿค–

1 week ago 2 0 1 0
Preview
Prisma Schema API API reference documentation for the Prisma Schema Language (PSL).

Read more ๐Ÿ‘‡
pris.ly/unique

1 week ago 0 0 0 0
Post image

๐Ÿ” Did you know Prisma lets you query by a combination of fields as a single unique key?

Define a compound unique constraint with @@unique, and use it directly in findUnique():

1 week ago 0 0 1 0
Advertisement
Preview
prisma format | Format & Validate Prisma Schema Format and validate your Prisma schema with prisma format. Ensures consistent structure and catches validation errors before generation.

Check it out ๐Ÿ‘‡
pris.ly/cli/format

2 weeks ago 0 0 0 0
Video

One of those small but useful commands: `prisma format`

Formats your schema file and validates it at the same time. Catches typos, config issues, and unknown preview features before they cause problems.

How often do you run it? ๐Ÿ‘€

2 weeks ago 0 0 1 0
Preview
Prisma Next Roadmap Have you been wondering when you can start using Prisma Next in your app? Take a look at our roadmap to find out.

Check out our latest blog for more details ๐Ÿ‘‡

pris.ly/AgH6EUa

2 weeks ago 0 0 0 0
Preview
prisma-next/ROADMAP.md at main ยท prisma/prisma-next Contribute to prisma/prisma-next development by creating an account on GitHub.

Quick Prisma Next update:

Weโ€™re not rushing this.

โ€ข April: stabilize extension APIs, invite contributors
โ€ข May: Early Access
โ€ข Juneโ€“July: GA for Postgres

Goal is a smooth path to adoption, including running alongside Prisma 7.
pris.ly/lXGKkWj

2 weeks ago 2 0 1 0
Video

So...seems like a lot of you REALLY want dark mode back in Prisma Studio.

Your wish has been granted โœจ
Rolling out to Studio in an upcoming release โณ

x.com/lassvesterg...

3 weeks ago 2 1 1 0
Preview
GitHub Copilot ยท Your AI pair programmer GitHub Copilot works alongside you directly in your editor, suggesting whole lines or entire functions for you.

Excited to see Prisma ORM on the main @github copilot demo!

From day one, our goal: build the best tools and UX for developers.

Live demo ๐Ÿ‘‡
pris.ly/github-copilot

3 weeks ago 2 0 0 0
Prisma Next: Rethinking ORMs for the AI era | Will Madden | PodRocket
Prisma Next: Rethinking ORMs for the AI era | Will Madden | PodRocket Will Madden joins the podcast to talk about Prisma Next and the evolution from Prisma 7, including the decision to migrate away from Rust, ship the core thro...

AI can write SQL.

So why do ORMs still matter?

Our Engineering Manager, Will Madden, joined the latest PodRocket episode to talk about Prisma Next and how ORMs are evolving for the age of agentic coding.

Watch the episode ๐Ÿ‘‡
pris.ly/pn-podrocket

3 weeks ago 0 1 0 0
Preview
GitHub - prisma/million-boxes-prisma-next Contribute to prisma/million-boxes-prisma-next development by creating an account on GitHub.

With streaming, the UI starts rendering immediately.
Without it, nothing appears until the full result set is returned.

This difference becomes obvious in metrics like first contentful paint vs last contentful paint.

See for yourself๐Ÿ‘‡
github.com/prisma/mill...

4 weeks ago 0 0 0 0
Advertisement
Video

What happens when your UI renders data as it arrives instead of waiting for the entire query to finish?

We tried a fun experiment: streaming 1,000,000 boxes from a database.

Left side: Streaming results (Prisma Next)
Right side: Fetch everything first

4 weeks ago 0 0 1 0
Preview
Release 7.5.0 ยท prisma/prisma Today, we are excited to share theย 7.5.0ย stable releaseย ๐ŸŽ‰ ๐ŸŒŸย Star this repo for notifications about new releases, bug fixes & features โ€” orย follow us on X! Highlights ORM Features Added suppor...

Prisma ORM 7.5.0 just shipped ๐Ÿš€

โœจ Nested transaction rollbacks via save-points

๐Ÿงฐ Prisma Studio upgrades:

โ€ข Multi-cell selection
โ€ข Full table search
โ€ข Cmd+K command palette
โ€ข Run raw SQL in Studio

Release notes ๐Ÿ‘‡
pris.ly/FJMhwUX

4 weeks ago 2 0 1 0
Preview
Rebuilding the Prisma Docs: A New Framework, Design, and Structure Learn how the Prisma team rebuilt their docs from scratch using Fumadocs, improved search with Mixedbread, and launched without disrupting day-to-day work.

ICYMI: we rebuilt our docs!

- New design
- Better search & AI chat
- Cleaner navigation
- Versioned docs

Read about how we pulled it off without taking anything down ๐Ÿ‘‡
pris.ly/b/docs-rebuild

4 weeks ago 1 0 1 0
Preview
Join the Prisma Discord Server! The official Discord for the Prisma ORM and Prisma Data Platform! Learn more at https://prisma.io

come hang out with us on Discord for live Q&A, AI support, direct access to our team, and help from the community ๐Ÿ‘‡
pris.ly/discord

1 month ago 1 0 0 0
Video

thank you so much for being a part of our community!! ๐Ÿ’š

1 month ago 2 0 1 0
Preview
GitHub - prisma/prisma-next Contribute to prisma/prisma-next development by creating an account on GitHub.

If you want to stay close to the work, star and watch the repo โญ๏ธ
pris.ly/pn-gh

1 month ago 2 0 0 0
Preview
The Next Evolution of Prisma ORM Today, we're excited to share what we've been working on the last few months: Prisma Next, a new foundation for Prisma ORM written fully in TypeScript.

We're building it in the open, and we want to hear from you ๐Ÿ‘‡
pris.ly/pn-anouncem...

1 month ago 1 0 1 0
Advertisement
Video

Today, weโ€™re sharing our vision for a new foundation for Prisma ORM.

It keeps the experience you love and sets the direction for a more composable, extensible, agent-ready future!

We'll let the code speak for itself โœจ

1 month ago 4 2 2 1
Video

๐Ÿ‘€ Built something cool with Prisma?

๐Ÿ™Œ Share it in the community-showcase channel on our Discord.

Itโ€™s where developers post real projects, give feedback, and learn from each otherโ€™s work.

Join the server and drop your project ๐Ÿ‘‡
pris.ly/discord/var-3

1 month ago 1 0 0 0
Transactions and batch queries (Reference) This page explains the transactions API of Prisma Client.

Learn everything about transactions in detail ๐Ÿ‘‡
pris.ly/transactions

1 month ago 0 0 0 0
Post image

Interactive transactions (prisma.$transaction) are powerful. You get a transaction-exclusive client for multiple operations, with a rollback guarantee.

It keeps your complex operations clean and safe.

1 month ago 0 0 1 0
Video

๐Ÿ˜ฌ

1 month ago 0 0 0 0
Post image

โ€œWhy is our usage up this week?โ€
โ€œWhatโ€™s our bill going to look like?โ€

We built something to answer that in one placeโ€ฆ
Check out the workspace metrics, available on all plans.
www.prisma.io/postgres

1 month ago 0 0 0 0