Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[typescript-react-apollo] Fix problem with unnecessary fragment imports for external mode #2360

Merged

Conversation

eddeee888
Copy link
Collaborator

@eddeee888 eddeee888 commented Aug 13, 2019

Normally, fragments are turned into document nodes so we can include them in the operations document nodes they are used in. In the case of documentMode = 'external', the operation document nodes are created externally and imported into the generated files. Therefore, there's no need to print fragment variables in the generated file anymore

This problem can be seen in this sandbox: https://codesandbox.io/s/gcg-15-experiments-c8l15. There are fragments in webpack/GetProject_Status.fragment.graphql and webpack/CreateProject.operation.graphql, and these will be converted into variables with suffix FragmentDoc in generated files (Note that we are not even importing the graphql-tag module).

This PR ensures that no fragments are generated when external mode is used.

NOTE: I'm having problem running validateTypeScript in the new tests. I've tried looking at the implementation of tsDocumentsPlugin and still not able to figure out what it's supposed to do. Would love some pointer please :)

TODO:

  • Check why validateTypeScript does not work

Sorry, something went wrong.

@dotansimha
Copy link
Owner

dotansimha commented Aug 16, 2019

Hi @eddeee888 !
This PR looks good, can you please explain the issue with validateTypeScript? Do you get an error?
The validateTypeScript method generates the required plugin dependencies (for example, for tests in typescript-operations, it will generate typescript plugin as well), merged the outputs of both plugins and tried to compile and validate the output using TypeScript compiler.
While using it, make sure to pass the schema you are using, the documents and the config, because they are needed for the typescript plugin (I think it has a default value, so if you tests is using a different schema/operations/config, make sure to override it).

…e. External mode relies on document nodes from external files which already include the fragments.
@eddeee888 eddeee888 force-pushed the fix-unused-fragments-in-external-mode branch from 3a4a0e1 to 2f18b60 Compare August 16, 2019 08:57
@eddeee888
Copy link
Collaborator Author

Hi @dotansimha , thanks for explaining how it works! Sooo... It was because I was using the wrong type for the fragments in the tests! 🤦‍♂

@dotansimha dotansimha merged commit df8ef62 into dotansimha:master Aug 16, 2019
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants