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

Import & export definitions in GraphQL SDL

Results 21 graphql-import issues
Sort by recently updated
recently updated
newest added

Hey, When using `extend` with a type, if it isn't anywhere in the schema without `extend`, input and return types used in its fields and the type itself aren't in...

Hello, When I update from version 0.7.1 to 1.0.1, I have the following typesciprt errors: ``` node_modules/apollo-link-http-common/lib/index.d.ts:4:15 - error TS2304: Cannot find name 'Response'. 4 response: Response; ~~~~~~~~ node_modules/apollo-link-http-common/lib/index.d.ts:9:15 -...

bug

https://github.com/prisma/graphql-import/blob/01a4637e03836dab9a56f73719bcaebf5cfd0c37/src/index.ts#L46 Just adding a second SPACE will break the regex

enhancement
help wanted

I'm using type extension in my project and just ran into an issue that took me a while to figure out. I was following along with the comments in [Type...

bug
waiting for answer

I have an app that parses schemas and is processing them. I want to use a directive in these schemas, but not to write there it's definition (alike Prisma directives...

bug
waiting for answer

This feature would be useful when we have types and inputs generated by Prisma, and want to add custom implemented Query and Mutation for real-world app. For example: ``` const...

enhancement

Hi everyone! I'm @urigo the founder of [The Guild](http://the-guild.dev). As recently [been announced](https://www.prisma.io/blog/the-guild-takes-over-oss-libraries-vvluy2i4uevs) on the Prisma blog, we are taking over the maintenance of this library going forward. I've expressed...

I am trying to make use of graphql-import with typescript, It loads files fine but I still have to find a way to copy the .qraphql files to a dist...

I'm receiving the error: ``` Error: Query root type must be provided ``` Here is my schema: schema.graphql ``` schema { query: ClientQuery ... } type ClientQuery { ... }...

enhancement
help wanted

```graphql # import Article from "./generated-schema.graphql" type Mutation { createArticle(data: ArticleCreateInput!): Article deleteArticle(id: ID!): Article } ``` and ```graphql # import Article from "./generated-schema.graphql" type Query { articles( where: ArticleWhereInput...