mirror of
https://github.com/cupcakearmy/blog-typescript-graphql.git
synced 2024-12-23 00:36:27 +00:00
19 lines
382 B
Markdown
19 lines
382 B
Markdown
|
# A sane and efficient guide for consuming GraphQL endpoints in Typescript
|
||
|
|
||
|
This is the companion repo to the [blog post]() about GraphQL with Typescript.
|
||
|
|
||
|
This is skeleton [svelte kit](https://kit.svelte.dev/) app. The relevant files are:
|
||
|
|
||
|
- `.graphqlrc.yml`
|
||
|
- `codegen.yaml`
|
||
|
- `src/lib/gql`
|
||
|
|
||
|
## Running
|
||
|
|
||
|
```bash
|
||
|
pnpm i
|
||
|
|
||
|
pnpm run generate # Generate GraphQL stuff
|
||
|
pnpm run dev
|
||
|
```
|