So, Prisma allows to create relationships between ...
# orm-help
j
So, Prisma allows to create relationships between tables in different services?
h
no, different services in a prisma server are isolated. They have different database where they are stored.
j
oh ok, thanks!
j
That said, you could use schema stiching, or a multi tenant setup and trick it by using custom resolvers returning results from different endpoints. I use this technique to allow users to connect to different services with a “master” service that redirects users depending on their account (but it’s tricky)
j
Could have have multiple prisma services use the same database?