Vasek Mlejnsky
08/21/2022, 8:21 PMPasindu Dilshan
08/26/2022, 5:17 AMBrendan Allan
09/01/2022, 11:10 AMDavid Hancu
09/03/2022, 8:18 PMEliya Cohen
09/10/2022, 7:04 PMJarupong
09/14/2022, 1:19 PMะะฒะฐะฝ ะกะตะปััะธะฝ
09/15/2022, 1:11 AMRohan Rajpal
09/15/2022, 12:47 PMEric Simon
09/26/2022, 7:56 PMVincent
09/27/2022, 8:47 AMSylvain (seel-vahn)
09/28/2022, 7:41 AMPasindu Dilshan
09/28/2022, 9:18 AMDavid Hancu
10/01/2022, 8:37 AMpg_trgm
queries using a middleware and an easier way of using the configuration file!
The update is scheduled later this month, after the pg_trgm
implementation is completed. Here's a sneak peek for the code-generated schemas:
SchemaCreator
.model("User")
.column("id", "Int", Constraints.Column.ID(), Constraints.Column.DEFAULT(Functions.AUTOINCREMENT()))
.column("name", "String")
.column("posts", "Post[]")
.model("Post")
.column("id", "Int", Constraints.Column.ID(), Constraints.Column.DEFAULT(Functions.AUTOINCREMENT()))
.column("title", "String", Constraints.Column.UNIQUE())
.column("userId", "Int")
.column("user", "User", Constraints.Column.RELATION({fields: ["userId"], references: ["id"]}))
.column("updatedAt", "DateTime", Constraints.Column.UPDATEDAT())
.column("createdAt", "DateTime", Constraints.Column.DEFAULT(Functions.NOW()))
.build();
David Hancu
10/04/2022, 8:22 PMpg_trgm
support using middlewares.
โข Migrated configuration to .mjs
instead of .json
to make it easier to implement code-generated schemas.
Link: https://www.npmjs.com/package/prisma-utilQuentin Laffont
10/06/2022, 12:41 PMJarupong
10/10/2022, 1:13 PMHarshit Jain
10/17/2022, 11:50 AMAndre Ricardo
10/21/2022, 8:47 AMRinu Jadav
10/24/2022, 4:05 AMSylvain (seel-vahn)
10/27/2022, 12:48 AMPrisma-AppSync is a Prisma Generator, that instantly converts your Schema into a full-blown GraphQL API for AWS AppSync.https://prisma-appsync.vercel.app ๐คฏ Major codebase rewrite (better DX, simplified API, โฆ) ๐บ New installer CLI
npx create-prisma-appsync-app
โก New local AppSync Server (local db, auto-reload, TS support, GraphQL IDE)
๐ New documentation website
prisma Support Prisma 4.5+
๐ช Tons of improvements
Please try it out!
https://github.com/maoosi/prisma-appsync