Andrei Alecu
Andrei Alecu
@deftomat I also would like this and could work on a PR for it, but I wonder why your example is JavaScript. As far as I can tell, graphql-code-generator's configuration...
@ardatan since you're a graphql-code-generator contributor as well. How would this best be implemented?
While digging through the graphql-code-generator source I found that `scalars` can actually point to a source file where they can be defined in code: https://github.com/dotansimha/graphql-code-generator/pull/2418 Test here shows how to...
You can still use the remote option and filter your options within it to only return a few of them that match the user input, instead of the huge list.
@Intellicode any chance you could take a look at this? It would be an incredible auto-fix for productivity.
Related: #6
I personally used https://www.npmjs.com/package/patch-package to replace this line: https://github.com/krislefeber/nestjs-dataloader/blob/df8fa93897389ee692e9137c6beb7629f81d86c3/index.ts#L11 with `import DataLoader from 'dataloader';`
Related: https://github.com/graphql/graphql-js/issues/894
Until merge of https://github.com/graphql/graphql-js/pull/2485 seems like the only solution is to disable caching on all data loaders via `{ cache: false }`
I changed gulp-ruby-sass to gulp-sass and that fixed css generation with no further changes. Also, it removes the dependency on ruby. Is there anything wrong with using gulp-sass instead of...