Lee Henson
Lee Henson
Sorry chief, I've been meaning to look into this a bit deeper but what with the World Cup, Wimbledon, cricket etc real life has been too distracting. I'll get some...
Ok, so something must be overwriting Gem::VERSION somewhere in my stack. If I change all the usages of Gem:VERSION to Gem::RubyGemsVersion in vendor/gems/ruby/1.9.1/specifications/*.gemspec, it no longer produces those errors. Any...
Perhaps it make make things a little more future-proof if the graphql source config block just forwarded a codegen config block onto graphql-codegen directly, e.g.: ```yaml sources: - name: MyGraphQLApi...
Hi. That works for the types emitted for the meshed schema, but it doesn't emit config for the source schemas. e.g. say in my source schema there is `scalar DateTime`,...
Sounds similar to https://github.com/Urigo/graphql-mesh/issues/3367
Spent a bit of time debugging why using a root filter transform would break typescript declaration emit during `mesh build`. My issue is due to this: * source `Author` schema...
I've added a draft PR with a naive implementation that works for me. ^
A bit of extra information - the patch I've got doesn't work when the name of a field has been renamed. I'm expecting the pascal-cased version of the field name...
It looks like explicitly `--include`ing all my non-generated source files and then `--exclude`ing `*` in that directory gives me the behaviour I want from rsync. I've patched the `.dockerignore` parsing...
I think it would be useful to include a `pipe`-like fn anyway, for when you already have two decoders that you want to sequence: ```ts const pipe = (da: D.Decoder)...