Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rubengrill/apollo-typed-documents
Get type safety for your apollo documents.
https://github.com/rubengrill/apollo-typed-documents
apollo-hooks apollo-react codegen typescript
Last synced: 2 days ago
JSON representation
Get type safety for your apollo documents.
- Host: GitHub
- URL: https://github.com/rubengrill/apollo-typed-documents
- Owner: rubengrill
- License: mit
- Created: 2020-04-13T12:26:46.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2023-03-27T19:13:09.000Z (over 1 year ago)
- Last Synced: 2024-04-27T09:27:01.274Z (7 months ago)
- Topics: apollo-hooks, apollo-react, codegen, typescript
- Language: TypeScript
- Homepage:
- Size: 4.63 MB
- Stars: 23
- Watchers: 2
- Forks: 6
- Open Issues: 47
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
- awesome-list - apollo-typed-documents
README
# apollo-typed-documents
Provides graphql-codegen plugins (https://graphql-code-generator.com/) for type safe GraphQL documents (`DocumentNode`).
It allows functions to accept a generic `TypedDocumentNode` so that types of other arguments or the return type can be inferred.
It is helpful for TypeScript projects but also if used only within an IDE, e.g. it works extremely well with VSCode (uses TypeScript behind the scenes).
```sh
$ yarn add apollo-typed-documents
```## codegenTypedDocuments
Generates TypeScript typings for `.graphql` files.
Similar to `@graphql-codegen/typescript-graphql-files-modules` (https://graphql-code-generator.com/docs/plugins/typescript-graphql-files-modules).
The difference is that is uses generic types, so that you have type safety with Apollo (e.g. `useQuery` / `useMutation`).
The `apollo-typed-documents` plugin also accepts the same `modulePathPrefix`, `relativeToCwd` and `prefix` config settings as [typescript-graphql-files-modules](https://graphql-code-generator.com/docs/plugins/typescript-graphql-files-modules).
### Install
```sh
$ yarn add @graphql-codegen/add @graphql-codegen/typescript @graphql-codegen/typescript-operations
$ yarn add apollo-typed-documents
````codegen.yml`:
```yml
schema: schema.graphql
documents: src/**/*.graphql
config:
scalars:
Date: string
generates:
./src/codegenTypedDocuments.d.ts:
plugins:
- apollo-typed-documents/lib/codegenTypedDocuments
config:
typesModule: "@codegen-types"
./src/codegenTypes.d.ts:
plugins:
- add:
placement: prepend
content: 'declare module "@codegen-types" {'
- add:
placement: append
content: "}"
- typescript
- typescript-operations
````tsconfig.json`:
Add `node_modules/apollo-typed-documents/lib/reactHooks.d.ts` in `include` to override the typings for hooks of `@apollo/client`, so that types can be inferred from typed documents.
```json
{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"jsx": "react",
"esModuleInterop": true
},
"include": ["src", "node_modules/apollo-typed-documents/lib/reactHooks.d.ts"]
}
```### Example
`src/authors.graphql`:
```graphql
query authors {
authors {
id
createdAt
name
description
books {
id
title
}
}
}
````src/createAuthor.graphql`:
```graphql
mutation createAuthor($input: AuthorInput!) {
createAuthor(input: $input) {
id
createdAt
name
description
books {
id
title
}
}
}
````src/codegenTypedDocuments.d.ts` (generated):
```ts
declare module "*/authors.graphql" {
import { TypedDocumentNode } from "apollo-typed-documents";
import { AuthorsQuery, AuthorsQueryVariables } from "@codegen-types";
export const authors: TypedDocumentNode;
export default authors;
}declare module "*/createAuthor.graphql" {
import { TypedDocumentNode } from "apollo-typed-documents";
import { CreateAuthorMutation, CreateAuthorMutationVariables } from "@codegen-types";
export const createAuthor: TypedDocumentNode;
export default createAuthor;
}
````src/AuthorList.js`:
```js
import { useMutation, useQuery } from "@apollo/client";
import React from "react";import authorsQuery from "./authors.graphql";
import createAuthorMutation from "./createAuthor.graphql";const AuthorList = () => {
// Type of `data` is inferred (AuthorsQuery)
const { data } = useQuery(authorsQuery);
const [createAuthor] = useMutation(createAuthorMutation);return (
<>
- {author.name}
{data?.authors.map((author) => (
))}
{
createAuthor({
// Type of variables is inferred (CreateAuthorMutationVariables)
variables: { input: { name: "Foo", books: [{ title: "Bar" }] } },
});
}}
>
Add
>
);
};
export default AuthorList;
```
### Notes for `create-react-app` users
`create-react-app` supports `graphql.macro` for loading `.graphql` files (https://create-react-app.dev/docs/loading-graphql-files/).
The `codegenTypedDocuments` plugin generates ambient module declarations for `.graphql` files, which means that `.graphql` files must be imported as regular modules (`import` syntax) so that TypeScript knows about the types.
You can use the babel plugin `babel-plugin-import-graphql` (https://github.com/detrohutt/babel-plugin-import-graphql), but then you need to use `react-app-rewired` (https://github.com/timarney/react-app-rewired/) and `customize-cra` (https://github.com/arackaf/customize-cra) so that you can define custom babel plugins.
```sh
$ yarn add react-app-rewired customize-cra
$ yarn add babel-plugin-import-graphql
```
`config-overrides.js`
```js
const { override, useBabelRc } = require("customize-cra");
module.exports = override(useBabelRc());
```
`.babelrc`
```json
{
"presets": ["react-app"],
"plugins": ["babel-plugin-import-graphql"]
}
```
`package.json`
```js
"scripts": {
"start": "react-app-rewired start",
"build": "react-app-rewired build",
"test": "react-app-rewired test",
...
}
```
If you have a TypeScript app, you need to override the `@apollo/client` types for hooks in `tsconfig.json`:
`tsconfig.json`
```js
{
"compilerOptions": {
...
},
"include": ["src", "node_modules/apollo-typed-documents/lib/reactHooks.d.ts"]
}
```
If you don't have a TypeScript app (you just want TypeScript support within your IDE) you can't create a `tsconfig.json` in your app folder, because `create-react-app` uses that file to detect if this is a TypeScript project.
Instead, you have to create the `tsconfig.json` in your `src` folder:
`src/tsconfig.json`
```json
{
"compilerOptions": {
"noEmit": true,
"allowJs": true,
"checkJs": true,
"strict": true,
"jsx": "react",
"esModuleInterop": true
},
"include": [".", "../node_modules/apollo-typed-documents/lib/reactHooks.d.ts"]
}
```
Please see the following example projects for more details:
- [`create-react-app` with TypeScript](examples/cra-ts)
- [`create-react-app` without TypeScript](examples/cra)
## codegenApolloMock
Creates a helper method to easily create mocks for Apollo `MockedProvider` (https://www.apollographql.com/docs/react/api/react-testing/#mockedprovider).
The returned object is guaranteed to conform to the GraphQL Schema of the query / mutation: [reference](src/createApolloMock.ts).
For required (non-null) fields which are not provided (in data / variables), it will use a default value (e.g. `"Author-id"`).
For optional fields which are not provided (in data / variables), it will use `undefined` for variables and `null` for data.
Works for any nested selections (data) and any nested inputs (variables).
It will include `__typename` in data by default. This can be deactivated as an option:
```js
apolloMock(documentNode, variables, result, { addTypename: false });
```
When used together with `codegenTypedDocuments` the data and variables are type checked (type inference).
To mock errors, you can provide `errors` in `result` (`GraphQLError`) or pass an `Error` instead of `result`:
```js
apolloMock(documentNode, variables, { errors: [new GraphQLError("Already exists")] });
apolloMock(documentNode, variables, new Error("Network error"));
```
### Install
```sh
$ yarn add apollo-typed-documents
```
`codegen.yml`
```yml
schema: schema.graphql
documents: src/**/*.graphql
config:
scalars:
Date: string
generates:
./src/apolloMock.js:
plugins:
- apollo-typed-documents/lib/codegenApolloMock
```
### Example
`schema.graphql`:
```graphql
scalar Date
type Author {
id: ID!
createdAt: Date!
name: String!
description: String
books: [Book!]!
}
type Book {
id: ID!
title: String!
}
input AuthorInput {
name: String!
description: String
books: [BookInput!]!
}
input BookInput {
title: String!
}
type Query {
authors: [Author!]!
}
type Mutation {
createAuthor(input: AuthorInput!): Author!
}
schema {
query: Query
mutation: Mutation
}
```
`src/authors.graphql`:
```graphql
query authors {
authors {
id
createdAt
name
description
books {
id
title
}
}
}
```
`src/createAuthor.graphql`:
```graphql
mutation createAuthor($input: AuthorInput!) {
createAuthor(input: $input) {
id
createdAt
name
description
books {
id
title
}
}
}
```
`src/apolloMock.js` (generated):
See: [reference](examples/docs/src/apolloMock.js)
`src/apolloMock.test.js`:
```js
import { GraphQLError } from "graphql";
import apolloMock from "./apolloMock";
import authors from "./authors.graphql";
import createAuthor from "./createAuthor.graphql";
describe("apolloMock", () => {
it("produces the minimal output that is valid according to graphql schema", () => {
expect(apolloMock(authors, {}, {})).toEqual({
request: {
query: authors,
variables: {},
},
result: {
data: {
authors: [],
},
},
});
expect(apolloMock(authors, {}, { data: { authors: [{}] } })).toEqual({
request: {
query: authors,
variables: {},
},
result: {
data: {
authors: [
{
__typename: "Author",
id: "Author-id",
createdAt: "Author-createdAt",
name: "Author-name",
description: null,
books: [],
},
],
},
},
});
expect(
apolloMock(
createAuthor,
{ input: { name: "Foo", books: [{ title: "Bar" }] } },
{ data: { createAuthor: { name: "Foo", books: [{ title: "Bar" }] } } }
)
).toEqual({
request: {
query: createAuthor,
variables: {
input: {
name: "Foo",
description: undefined,
books: [{ title: "Bar" }],
},
},
},
result: {
data: {
createAuthor: {
__typename: "Author",
id: "Author-id",
createdAt: "Author-createdAt",
name: "Foo",
description: null,
books: [
{
__typename: "Book",
id: "Book-id",
title: "Bar",
},
],
},
},
},
});
});
it("allows overriding default values for scalar types", () => {
const scalarValues = { Date: "2020-01-01" };
expect(
apolloMock(authors, {}, { data: { authors: [{}] } }, { scalarValues })
).toEqual({
request: {
query: authors,
variables: {},
},
result: {
data: {
authors: [
{
__typename: "Author",
id: "Author-id",
createdAt: "2020-01-01",
name: "Author-name",
description: null,
books: [],
},
],
},
},
});
});
it("supports errors", () => {
expect(
apolloMock(authors, {}, { errors: [new GraphQLError("Already exists")] })
).toEqual({
request: {
query: authors,
variables: {},
},
result: {
errors: [new GraphQLError("Already exists")],
},
});
expect(apolloMock(authors, {}, new Error("Network error"))).toEqual({
request: {
query: authors,
variables: {},
},
error: new Error("Network error"),
});
});
});
```