Hi guys, I’ve been playing around with Prisma with...
# orm-help
i
Hi guys, I’ve been playing around with Prisma with gqlgen. I noticed that the datamodel schema is a subset of the GQLang. In that case, my workflow would require me to 1) add to the main schema 2) add the same model into the datamodel schema for Prisma. Are there plans on merging the two so I only have to add the new model once?
h
We can't merge these as your application server schema is different from the prisma server's api. GraphQL SDL is just a easy way to represent your database models.
👍 1