Hey there, I was browsing the prisma airbnb exampl...
# orm-help
w
Hey there, I was browsing the prisma airbnb example yesterday, and found a lot of witchcraft on a few resolvers: (fragment resolvers): https://github.com/prismagraphql/graphql-server-example/blob/master/src/resolvers/Home.ts#L6-L33 (transformed info object): https://github.com/prismagraphql/graphql-server-example/blob/master/src/resolvers/Query.ts#L8-L31 Are these type of resolvers documented anywhere ? 🤔
👍 2
l
Loved the use of
witchcraft
in this message
And fragment is basic fragment 😄
w
Doc says `WrapQuery()`: This is used to get a result nested inside other result. What’s the usecase in airbnb’s example ?