Mikkel
Results
2
comments of
Mikkel
Maybe https://nexusjs.org/docs/plugins/field-authorize is of interest: ``` t.field('postById', { type: Post, args: { id: idArg() }, authorize: (root, args, ctx) => ctx.auth.canViewPost(args.id), resolve(root, args, ctx) { return ctx.post.byId(args.id) }, }) ```
I have been frustrated as well, especially with the Nexus framework deprecation. But at the end of the day moving fast and breaking things is what enables the end product...