Tomas Trescak

Results 86 comments of Tomas Trescak

@mattferin I like the generated content by GraphQL-binding. With a little typescript magic it gives me effortless completely type safe resolvers. Here is magic ```ts import * as Types from...

Guys, I’ll post full instructions tonight. Started to write them this morning but then my little one took over the day. Don’t waste time with the code above, there are...

@Sharlaan , let me start with saying that you are right. Naming it PrismaMutation was not the best of the choices. I was planning to write a blog post about...

@mattferrin I would have no idea where to start as each resolver returns it's own thing.

@mattferrin looks nice, I do not seem to have problems with your approach. It is working rock solid. Not sure why it's failing for you ;(

@sungwoncho I got all the configurations working for multiple languages. It's based on yaml files. You can basically omit the part with "pane" configuration and the rest will work straight...

Guys, I'm absolutely fine with using CLI as the base generator, my problem currently is that for about a month I'm out on conference trips and won't have much time...

Thanks for the amazing work on upgrade. Would you consider publishing a new version so that we do not have to run from source? Thanks!!!

Also, with no error handler it gives only a cryptic message: ```js console.log(env.validate('default', { foo: 1, boo: '2' })); ``` result ``` { keyword: 'required', dataPath: '', schemaPath: '#/required' }...

And this validates OK, but it should detect error on `goo` type: ```js env.validate('default', { foo: 1, boo: '2', moo: { goo: 1 } }) ```