graphql-loader icon indicating copy to clipboard operation
graphql-loader copied to clipboard

:cherries: A webpack loader for .graphql documents

Results 35 graphql-loader issues
Sort by recently updated
recently updated
newest added

There are 2 proposed ways of importing graphql files into one another and the 1st one is covered by this loader. The other one is through the use of an...

Double pound should be a real comment even if it contains a valid or invalid import directive. eg: ```graphql #import "./file.graphql"

import doesn't seem to contain the fragment specified in # import statement and doesn't handle single quoted paths as well: contact.fragment.graphql: ```graphql fragment fullContactFields on Contact { addresses { line1...

It would be nice to support multiple operations (queries/mutations) per module, which get exported as named exports for instance. The loader included in the graphql-tag package supports this. How difficult...

I'm seeing this warning when doing a fresh yarn install of a project containing [email protected], the latest version at time of writing: > The 'apollo-codegen' command has been replaced with...

In `devDependencies`, there is `"ts-loader": "3.x",` but in `peerDependencies` there's `"ts-loader": "^4.4.1"` I'm not sure why `ts-loader` is a peer dependency; seems like it should only be a development dependency?

fix this: https://github.com/samsarahq/graphql-loader/blob/master/src/loader.ts#L194

In order for automatic cache updates to work correctly, Apollo (by default) requires that the id and __typename fields are provided in queries. It is very easy to forget to...