Education posts
Articles tagged Education on the Prisma blog: guides, announcements, and updates from the team building Prisma ORM and Prisma Postgres.
Top 5 Myths about Prisma ORM
Discover the truth behind five common misconceptions about Prisma ORM. In this article, we debunk the myths, explore their origins, and separate fact from fiction.

Advanced Database Schema Management with Atlas & Prisma ORM
Use Atlas with Prisma ORM 7 for advanced schema management: CI/CD linting, schema monitoring, versioning, and low-level features like views and triggers.

Organize Your Prisma Schema into Multiple Files
Prisma ORM supports splitting your schema into multiple .prisma files, Generally Available since v6.7.0. Learn the Prisma 7 setup with prisma.config.ts, best practices, and common pitfalls.

Choosing the Best Join Strategy in Prisma ORM: join vs query
Prisma ORM loads relations with database-level joins (a single SQL query with JSON aggregation) or application-level joins (one query per table). Learn how both work and when to use which.

Database Caching: A Double-Edged Sword? Examining the Pros and Cons
Discover the advantages and hurdles of caching database query results. Learn how caching enhances performance, scalability, and resource utilization, while also delving into the associated challenges.

Overcoming Database Challenges in Serverless & Edge Applications
Learn best practices around deploying stateful apps in traditionally stateless environments.

Best Practices To Speed Up Your Serverless Applications
Learn about some best practices to speed up your serverless applications using Prisma.

Adding Database Access to your SvelteKit App with Prisma
Learn how you can interact with a database from a SvelteKit application using Prisma.

Building a REST API with NestJS and Prisma: Authentication
Learn how to implement JWT authentication in a NestJS REST API with Prisma ORM 7 and Passport: login endpoint, JWT strategy, auth guards, Swagger integration and bcrypt password hashing.

The Ultimate Guide to Testing with Prisma: CI Pipelines
How to run Prisma ORM unit, integration, and end-to-end tests in a GitHub Actions CI pipeline with a Postgres service. Verified with current action versions.


Building a REST API with NestJS and Prisma: Handling Relational Data
Learn how to handle relational data in a REST API built with NestJS and Prisma ORM 7: model a one-to-many relation, build user CRUD endpoints, and exclude sensitive fields from responses.

The Ultimate Guide to Testing with Prisma: End-To-End Testing
How to write end-to-end tests for a Prisma ORM app with Playwright, using page objects, fixtures, and Prisma Client for cleanup. Verified on Prisma 7.8.
