Skip to content

Commit

Permalink
[with-typescript-graphql] fixes breaking changes in graphql-let v0.18…
Browse files Browse the repository at this point in the history
….0 (#32681)

* Migrate graphql-let v0.18.0 according to the documentation

* lint-fix

Co-authored-by: JJ Kasper <jj@jjsweb.site>
  • Loading branch information
u-yas and ijjk committed Feb 6, 2022
1 parent 65e951e commit 75be56f
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 7 deletions.
1 change: 1 addition & 0 deletions examples/with-typescript-graphql/.gitignore
Expand Up @@ -37,3 +37,4 @@ yarn-error.log*
__generated__
*.graphql.d.ts
*.graphqls.d.ts
.cache
2 changes: 1 addition & 1 deletion examples/with-typescript-graphql/.graphql-let.yml
Expand Up @@ -3,4 +3,4 @@ documents: '**/*.graphql'
plugins:
- typescript-operations
- typescript-react-apollo
cacheDir: __generated__
cacheDir: .cache
2 changes: 1 addition & 1 deletion examples/with-typescript-graphql/lib/resolvers.ts
@@ -1,4 +1,4 @@
import { QueryResolvers, MutationResolvers } from './type-defs.graphqls'
import { QueryResolvers, MutationResolvers } from '@graphql-types@'
import { ResolverContext } from './apollo'

const userProfile = {
Expand Down
6 changes: 3 additions & 3 deletions examples/with-typescript-graphql/package.json
Expand Up @@ -20,7 +20,7 @@
},
"devDependencies": {
"@graphql-codegen/cli": "^1.17.8",
"@graphql-codegen/import-types-preset": "1.18.2",
"@graphql-codegen/import-types-preset": "^2.1.8",
"@graphql-codegen/plugin-helpers": "^1.17.8",
"@graphql-codegen/typescript": "^1.17.8",
"@graphql-codegen/typescript-operations": "^1.17.8",
Expand All @@ -30,11 +30,11 @@
"@types/react-dom": "^16.9.8",
"@types/react-test-renderer": "^17.0.1",
"babel-jest": "26.3.0",
"graphql-let": "0.x",
"graphql-let": "^0.18.6",
"graphql-tag": "2.11.0",
"jest": "26.4.0",
"react-test-renderer": "^17.0.1",
"typescript": "^3.9.7",
"typescript": "^4.5.4",
"yaml-loader": "0.6.0"
}
}
11 changes: 9 additions & 2 deletions examples/with-typescript-graphql/tsconfig.json
Expand Up @@ -12,8 +12,15 @@
"moduleResolution": "node",
"resolveJsonModule": true,
"isolatedModules": true,
"jsx": "preserve"
"jsx": "preserve",
"baseUrl": ".",
"paths": {
"@graphql-types@": [
"node_modules/@types/graphql-let/__generated__/__types__"
]
},
"incremental": true
},
"include": ["next-env.d.ts", "graphql.d.ts", "**/*.ts", "**/*.tsx"],
"exclude": ["node_modules"]
"exclude": ["node_modules", ".cache"]
}

0 comments on commit 75be56f

Please sign in to comment.