rsnext/examples/with-typescript-graphql
matcha 6be8a04335
fixes with-typescript-graphql: unable to resolve dependency tree (#28637)
Example `with-typescript-graphql`has unmatched dependency tree in `react-test-renderer` lead to error in #28582, I changed version of `react-test-renderer` to `^17.0.1` and fix that issue.

Closes https://github.com/vercel/next.js/issues/28582
2021-09-07 15:26:32 +00:00
..
lib Add mutation example to with-typescript-graphql (#16742) 2020-11-10 21:10:54 +00:00
pages Fix typescript types. (#23771) 2021-04-15 18:55:30 +00:00
test Add mutation example to with-typescript-graphql (#16742) 2020-11-10 21:10:54 +00:00
.babelrc Update with-typescript-graphql (#16101) 2020-08-29 22:15:50 -04:00
.gitignore Update with-typescript-graphql (#16101) 2020-08-29 22:15:50 -04:00
.graphql-let.yml (example/with-typescript-grapql): fix deps (#26010) 2021-06-13 16:40:28 +00:00
graphql.d.ts next-env.d.ts note in templates (#27983) 2021-08-12 20:36:53 +00:00
jest.config.js fix: Order moduleFileExtensions left-to-right (#18328) 2020-10-27 20:20:03 +00:00
next-env.d.ts next-env.d.ts note in templates (#27983) 2021-08-12 20:36:53 +00:00
next.config.js Update with-typescript-graphql (#16101) 2020-08-29 22:15:50 -04:00
package.json fixes with-typescript-graphql: unable to resolve dependency tree (#28637) 2021-09-07 15:26:32 +00:00
README.md (example/with-typescript-grapql): fix deps (#26010) 2021-06-13 16:40:28 +00:00
tsconfig.json next-env.d.ts note in templates (#27983) 2021-08-12 20:36:53 +00:00

TypeScript and GraphQL Example

One of the strengths of GraphQL is enforcing data types on runtime. Further, TypeScript and GraphQL Code Generator (graphql-codegen) make it safer by typing data statically, so you can write truly type-protected code with rich IDE assists.

This template extends Apollo Server and Client Example by rewriting in TypeScript and integrating graphql-let, which runs TypeScript React Apollo in graphql-codegen under the hood. It enhances the typed GraphQL use as below:

import { useNewsQuery } from './news.graphql'

const News = () => {
	// Typed already
	const { data: { news } } = useNewsQuery()

	return <div>{news.map(...)}</div>
}

By default **/*.graphqls is recognized as GraphQL schema and **/*.graphql as GraphQL documents. If you prefer the other extensions, make sure the settings of the webpack loader in next.config.js and .graphql-let.yml are consistent.

Preview

Preview the example live on StackBlitz:

Open in StackBlitz

Deploy your own

Deploy the example using Vercel:

Deploy with Vercel

How to use

Execute create-next-app with npm or Yarn to bootstrap the example:

npx create-next-app --example with-typescript-graphql with-typescript-graphql-app
# or
yarn create next-app --example with-typescript-graphql with-typescript-graphql-app

Deploy it to the cloud with Vercel (Documentation).