graphql-transform-schema icon indicating copy to clipboard operation
graphql-transform-schema copied to clipboard

Transform, filter & alias resolvers of a GraphQL schema

Results 12 graphql-transform-schema issues
Sort by recently updated
recently updated
newest added

## Version **0.12.0** of [@types/graphql](https://www.npmjs.com/package/@types/graphql) was just published. Dependency @types/graphql Current Version 0.11.8 Type devDependency The version **0.12.0** is **not covered** by your **current version range**. If you donโ€™t accept...

greenkeeper

## Version **3.0.0** of [graphql-tools](https://github.com/apollostack/graphql-tools) was just published. Dependency graphql-tools Current Version 2.24.0 Type devDependency The version **3.0.0** is **not covered** by your **current version range**. If you donโ€™t accept...

greenkeeper

## The dependency [lodash](https://github.com/lodash/lodash) was updated from `4.17.10` to `4.17.11`. ๐Ÿšจ [View failing branch](https://github.com/prisma/graphql-transform-schema/compare/master...prisma:greenkeeper%2Flodash-4.17.11). This version is **covered** by your **current version range** and after updating it in your project...

greenkeeper

## Version **0.12.0** of [graphql](https://github.com/graphql/graphql-js) was just published. Dependency graphql Current Version 0.11.7 Type dependency The version **0.12.0** is **not covered** by your **current version range**. If you donโ€™t accept...

greenkeeper

``` source/Schema/index.ts:14:43 - error TS2345: Argument of type 'import("/Users/jasonkuhrt/projects/personal/gql-examples/prisma-stitch/node_modules/@types/graphq...' is not assignable to parameter of type 'import("/Users/jasonkuhrt/projects/personal/gql-examples/prisma-stitch/node_modules/apollo-link/n...'. Types of property 'astNode' are incompatible. Type 'Maybe' is not assignable to type...

![image](https://user-images.githubusercontent.com/8952305/35934185-a91cb23c-0bf1-11e8-8659-07c794f4daca.png) - This issue is caused by graphql-transform-schema not using the peer dependency, so the version of graphql is misaligned when the peer is using an updated version of graphql....

## Version **0.24.0** of [ava](https://github.com/avajs/ava) was just published. Dependency ava Current Version 0.23.0 Type devDependency The version **0.24.0** is **not covered** by your **current version range**. If you donโ€™t accept...

greenkeeper

As mentioned [in the schema transformation documentation](https://www.advancedgraphql.com/content/schema-transformation), one can hide operations in a `transformSchema` call by setting boolean values against desired queries/mutations like so: ```javascript // Example below is from...

Hi! consider following schema: ``` type BoxImage implements ContentBox { id: String image: String } interface ContentBox{ id: String } type Query { contentBoxById(id: String): ContentBox } ``` Type BoxImage...

![image](https://user-images.githubusercontent.com/852069/32203279-70bd2208-bde2-11e7-9577-949cc1f9873e.png)