Charly Poly
Charly Poly
Hi @chriswetterman, hi all, Could you give a try to the following canary release of `@graphql-codegen/cli`? | Package | Version | Info | |------|---------|----| | `@graphql-codegen/cli` | `2.13.8-alpha-20221025134913-ec8a36be2` | [npm...
@pleunv @wesselvdv @chriswetterman @hannahborel, any feedback with the canary version suggested above?
A fix has been released in `@graphql-codegen/[email protected]` 📦 Please make sure to also update all your `@graphql-codegen/*` packages.
Hi @AnthoniG, It seems like codegen is failing to load your schema because of a network interruption. Are you sure that the URL is `http://localhost:8000/gql` and not `http://localhost:8000/graphql`? Also, does...
@AnthoniG, does it work properly if you downgrade to `@graphql-codegen/[email protected]`?
@AnthoniG, I just discussed this with someone who had a similar issue because of HTTP redirections. Could you perform a `curl` on your local endpoint and send me the detailed...
@AnthoniG, there is no hurry, stay safe. Good recover.
Hi @lazandrei19, Can you try replacing > schema: localhost:8000 with > schema: http://localhost:8000 Thank you,
I had the same kind of issue with : ```ts export const SearchResults = connectStateResults(connectHits(SearchResultsComponent)); ``` The workaround was to do : ```ts export const SearchResults = connectHits(connectStateResults(SearchResultsComponent)); ``` 💯
Hi @markedwards, Could you provide more information so we can better help you? Ideally, we would need a proper Codesandbox or GitHub reproduction or at least some code excerpt and...