Software Alternatives & Reviews
Table of contents
  1. Social Mentions
  2. Comments

Prisma GraphQL API

Prisma helps modern applications access and manipulate data through a unified data layer subtitle

Prisma GraphQL API Reviews and details

Screenshots and images

  • Prisma GraphQL API Landing page
    Landing page //
    2023-02-05

Badges

Promote Prisma GraphQL API. You can add any of these badges on your website.
SaaSHub badge
Show embed code

Social recommendations and mentions

We have tracked the following product recommendations or mentions on various public social media platforms and blogs. They can help you see what people think about Prisma GraphQL API and what they use it for.
  • Ask HN: Best OSS SQL Query Builder in Any Language
    Https://prisma.io is popular as I understand it. I've been trying out https://strapi.io the last week and am thoroughly impressed. They both do much more than build queries. One big thing both do is automate database migration calculations. Strapi goes further and gives you a CMS and admin UI on top, as well as doing a lot more of the complex query building from a json object. Both still require a fundamental... - Source: Hacker News / 21 days ago
  • Modeling Authorization in Prisma - No Theory, Just Code
    This post aims to fill the gap by targeting Prisma - the most popular ORM for TypeScript developers. By narrowing it down to a specific toolkit and language, we can explain the concepts more efficiently using code instead of words. - Source: dev.to / 4 months ago
  • From Prisma to TanStack Query: Fast Lane to Full-Stack Type Safety
    Prisma is one of the most popular ORMs in the NodeJS world - loved by many for its intuitive data modeling and flexible query APIs. It shines for its concise and powerful syntax for querying relational data, and one great feature of it is to infer the types of query results precisely. Here's an example:. - Source: dev.to / 5 months ago
  • Is Next.js 13 + RSC a Good Choice? I Built an App Without Client-Side Javascript to Find Out
    Prisma + ZenStack for data access and authorization. - Source: dev.to / 6 months ago
  • Drizzle or Prisma? I Built an App Twice to Find Out Which Is Better
    For TypeScript lovers, Prisma has been the perfect solution for building database-centric applications for quite a while. But recently, a new challenger has emerged. If you've been closely tracking the ORM space, you've probably heard of Drizzle, a new ORM that claims to be more flexible, performant, and an overall better alternative. In this article, I'll quest for a comparison. Following the "Show, Don't Tell"... - Source: dev.to / 7 months ago
  • Build your own AI Meme Generator & learn how to use OpenAI's function calls ☎️
    The context object is passed through to all Actions and Queries by Wasp. It contains the Prisma client with access to the DB entities you defined in your main.wasp config file. - Source: dev.to / 8 months ago
  • RLS of Supabase(PostgreSQL) Is Good, but …🤔
    It is intuitive to think of Object-Relational Mapping (ORM) as the bridge between application code and the database, providing a convenient abstract access layer for code. So that’s the approach we choose to do for the ZenStack OSS project we are building. It is built above the Prisma ORM, and one of its focuses is to add access control capability. Here's an example schema for the same "chat" scenario that we've... - Source: dev.to / 10 months ago
  • Limitation of TRPC's Type Inference and How We Improved It
    A careful reader might have found some clue: the loadPost function's typing pattern is extensively used by Prisma ORM. It's where Prisma's best features come from: it doesn't just type things; it types them perfectly. - Source: dev.to / 10 months ago
  • Using Prisma with SvelteKit
    That's why I like Prisma, it's a friendly to use solution that simplifies many of the pain points of working with databases. - Source: dev.to / 10 months ago
  • How to Host a RESTful API on Vercel
    Data modeling is the most crucial part of building a resource-centric API. In this guide, we'll use Prisma and ZenStack to model the database. Prisma is a toolkit offering a declarative data modeling experience. ZenStack is a power pack to Prisma providing enhancements like access control, specification generation, automatic service generation, and many other improvements. - Source: dev.to / 11 months ago
  • Showoff Saturday: Lost Pixel Platform - visual regression testing for your Frontend
    We have worked hard on the Lost Pixel Platform - the SaaS version of our tool. We are a small team of two working on it currently, but we already have awesome clients like prisma.io and adverity.com. I would be excited if you try it out and give us the feedback if you will have any! Source: about 1 year ago
  • 🎓 Monorepo College Lecture 2: Build Me Up Buttercup
    Public-hoist-patterns - By default, pnpm won't hoist any packages other than ESLint and Prettier packages to the root node_modules folder, This is mostly great but because we will be using Prisma as our database ORM, it does not play nicely in monorepo settings and hence why we need to add it to our public-hoist-patterns to make it work. This overrides the default value of Prettier and ESLint packages though hence... - Source: dev.to / about 1 year ago
  • JSON vs. XML with Douglas Crockford
    We’re using Prisma (https://prisma.io) schemas for a particular data exchange project we’re doing so that we can generate JSON schemas, SQLite schemas, PostgreSQL schemas, etc. We have even found a generator to create basic Elixir code from the Prisma schemas. We’re not using anything else from Prisma, but if we had to implement something else in JS to talk to a database, that would be a contender... - Source: Hacker News / about 1 year ago
  • Three Ways to Secure Database APIs: Which Is Right for You?
    The increasing popularity of ORM offers a new opportunity for implementing security rules. Conceptually, ORM can be considered a big middleware between the application code and the database, translating commands and result sets between the two worlds. By using ORMs, you already model your database schema declaratively, either "code-first" like TypeoRM or "schema-first" like Prisma. So it's a natural thought to... - Source: dev.to / about 1 year ago
  • Migrating From Django to Next.js: What’s the Equivalent for Django-Guardian?
    Prisma: ORM + database migration (Django's model layer). - Source: dev.to / about 1 year ago
  • Building a Secure Database-Centric OpenAPI in 15 Minutes
    Data modeling is the most crucial part of building a resource-centric API. In this guide, we'll use Prisma and ZenStack to model the database. Prisma is a toolkit that offers a declarative data modeling experience, and ZenStack is a power pack to Prisma providing enhancements like access control, specification generation, automatic service generation, and many other improvements. - Source: dev.to / about 1 year ago
  • I've been reading about Distributed Tracing lately and I think it's the coolest way to debug and monitor your apps! Here's what I learned:
    In order to really understand it, I integrated Sentry in a demo Next.js app and configured distributed tracing on a single API endpoint. The app uses Next Auth for auth and Prisma with PlanetScale for a database. Here's the trace I get for my endpoint:. Source: about 1 year ago
  • What Made Me Pay That $10/Mon For GitHub Copilot
    While building the ZenStack project, we created a DSL for modeling database schema. The DSL is based on Prisma ORM but with several extensions. Copilot obviously managed to leverage its acquaintance with Prisma and worked surprisingly well with the language outside its knowledge. It's like an experienced Boeing 737 pilot will have a decent chance to safely land an Airbus 320 even if he was never trained for it.... - Source: dev.to / about 1 year ago
  • Modern Web Architecture Without a Backend — Using Prisma + ZenStack
    Prisma is an ORM toolkit for Javascript/TypeScript. ORM is a kind of library that lets you access databases without writing SQL. Instead, you write code in the same language as the rest of your app to manipulate the database, and the ORM library will translate it into SQL queries. - Source: dev.to / about 1 year ago
  • Three Weeks with Planetscale and Prisma: A Hands-On Review
    You're more likely to be acquainted with Prisma than Planetscale, but it is a rather nice [Type|Java]script ORM. If you're familiar with ORMs, you're mostly familiar with Prisma, and while I wouldn't put it on par with Django's ORM or SQLAlchemy, it has most of what you need in an ORM, and where it doesn't have feature completeness, allows you to shell out to raw SQL queries. - Source: dev.to / about 1 year ago
  • Building a Cal.com Clone With Remix + Prisma + ZenStack
    This post demonstrates how easy it is to make a simplified clone of Cal.com with a modern Javascript stack - Remix.run, Prisma, and ZenStack. - Source: dev.to / about 1 year ago

Do you know an article comparing Prisma GraphQL API to other products?
Suggest a link to a post with product alternatives.

Suggest an article

Generic Prisma GraphQL API discussion

Log in or Post with

This is an informative page about Prisma GraphQL API. You can review and discuss the product here. The primary details have not been verified within the last quarter, and they might be outdated. If you think we are missing something, please use the means on this page to comment or suggest changes. All reviews and comments are highly encouranged and appreciated as they help everyone in the community to make an informed choice. Please always be kind and objective when evaluating a product and sharing your opinion.