H.J. van Meerveld

Results 35 comments of H.J. van Meerveld

I run into the same error (```Missing required typegen import: Context```) on Node 14.0.0 The error message is preceded by another that might contain useful information: > node dist/server GraphQL...

@Benjaminryejones Thank you for the reply. When I run `npm run build` the code runs without an error. This is in line with your comment, because there is a file...

The whole usecase of `ms` for me is to convert configuration files, so if `string` is dropped, I'll have to look for another package. The comment from @meyfa tells me...

@webnoob, has there been any progress on this feature?

I am using this: ```typescript async function resolveIfAdmin(root: any, args: any, ctx: any, info: any, originalResolve: any) { const isAdmin = await ctx.isAdmin() // you need to implement isAdmin yourself...

I think I am currently experiencing the described problem: ```typescript t.list.field('AcademicYears', { type: 'AcademicYear', args: { where: 'AcademicYearWhereInput', first: intArg({ required: false }), last: intArg({ required: false }), }, resolve:...

There may be two other ways to solve this that require less repetition: ```javascript const UserCreateInput = createInputType({ //

> That said, the original proposal here seems to capture the static nature of NP right now well 🤔. Then I guess the original proposal will cause the least amount...

This looks like a feature that angular-translate supports for a long time: [angular-translate directive](https://angular-translate.github.io/docs/#/guide/05_using-translate-directive) I've used this a lot in Angularjs projects and really like it. Writing `{{ $('` and...