We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Currently forwardTo() doesn't let us omit the resolvers, and as you can see it's quite a bit of boilerplate still.
forwardTo()
export default { Query: { user: forwardTo('db'), users: forwardTo('db'), }, Mutation: { createUser: forwardTo('db'), updateUser: forwardTo('db'), updateManyUsers: forwardTo('db'), upsertUser: forwardTo('db'), deleteUser: forwardTo('db'), deleteManyUsers: forwardTo('db'), } }
Is it possible to have all those resolvers made available without having to specify them?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Currently
forwardTo()
doesn't let us omit the resolvers, and as you can see it's quite a bit of boilerplate still.Is it possible to have all those resolvers made available without having to specify them?
The text was updated successfully, but these errors were encountered: