Tobias Trumm

Results 26 comments of Tobias Trumm

I also ran into the issue that the code generated by openapi-generator does not validate required nullable fields correctly. I posted a workaround [here](https://github.com/OpenAPITools/openapi-generator/issues/11969#issuecomment-1084351433).

A webpack team member explained the cause of this issue here: https://github.com/webpack/webpack/issues/13498#issuecomment-853815100 Basicly, the `browser` field inside the `package.json` is ignored because the `module` field takes precedence. Instead they recommend...

I am having a similar issue concerning the [implicit locale fallback](https://kazupon.github.io/vue-i18n/guide/fallback.html#implicit-fallback-using-locales). ```javascript const i18n = new VueI18n({ locale: 'en-US', messages: { en: { hello: 'hello world' } } }); const...

I am having the same problem. This does not seem to be caused directly by `apollo-language-server` because it accepts the latest version of graphql. ``` // apollo-language-server/package.json "dependencies": { "graphql":...

These packages all link to non existing github repositories and were not updated in 2 years. https://www.npmjs.com/package/@apollographql/graphql-language-service-interface https://www.npmjs.com/package/@apollographql/graphql-language-service-parser https://www.npmjs.com/package/@apollographql/graphql-language-service-types https://www.npmjs.com/package/@apollographql/graphql-language-service-utils

According to https://github.com/apollographql/apollo-tooling/issues/1553#issuecomment-571303621 these packages are forks from https://github.com/graphql/graphiql/tree/main/packages. The original packages support graphql@15 by now so I think it would be helpful if an apollographql member could take a...

By the way this is not an issue with installing apollo globally, this issue also occurs locally on my installation. The issue is that `apollo-language-server` claims to be compatible with...

Installing apollo in an empty project (node v15.12.0, npm 7.6.3) resulted in the following dependency tree for me (calling `npm ls graphql`) ![grafik](https://user-images.githubusercontent.com/2707930/111851944-7bd7f080-8915-11eb-8485-e31d1cc591b6.png) As you can see, it only uses...

I don't know why but I can't convince npm in my other project to use `[email protected]` everywhere. `npm install -D graphql@15` does not throw an error and instead produces the...

I would like to see this merged as well. To proceed with this someone with write access on this PR propably needs to resolve the merge conflicts and then check...