I have a problem with Prisma client (compared to p...
# prisma-client
e
I have a problem with Prisma client (compared to prisma-binding), it does not get the relationship of a requested resource. Let's say I want to get the
type User
which would contain
posts: [Post!]!
, I'd receive
null
for
posts
. The only way to get the users with the posts in prisma client is with a fragment (as far as I am aware). This makes resolvers much more verbose to define (and update on model modifications). Is this an expected behavior?
☝️ 1