I currently have a PostgreSQL db based on Django m...
# orm-help
m
I currently have a PostgreSQL db based on Django models. I am planning on breaking out of Django and move to microservices and would really like to use Prisma in some way but not really sure where to start. Any pointers?
s
You mean you are looking into deploying Prisma on AWS, Zeit Now, or Apex Up? There is documentation on the latter two and there are a few people here who can provide insight on AWS.
m
Ah, no. Sorry for not being more clear. I'm looking at redesigning our current db model with GraphQL schema instead (to become db agnostic) and then use that with Prisma, but I don't really know where to start. Are there any helpful tools or guides to do stuff like that? I've been googling like crazy but haven't really found anything helpful.
s
I was about to direct you to https://www.prisma.io/docs/tutorials/setup-prisma/connect-db-with-data/postgres-chie5yui7r — turns out it doesn't exist yet 😅
You will just need to define your GQL models based on how the data is currently stored, I'd imagine.
n
exactly right, @Sam Jackson! Introspection is what I'd recommend as well.