Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
kristianfreeman committed Oct 25, 2024
1 parent 7a5e8c5 commit b977294
Show file tree
Hide file tree
Showing 27 changed files with 11,940 additions and 2,617 deletions.
3 changes: 3 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[*]
indent_style = space
indent_size = 2
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -215,3 +215,5 @@ $RECYCLE.BIN/

### Cloudflare ###
worker

src/generated
21 changes: 0 additions & 21 deletions LICENSE

This file was deleted.

98 changes: 0 additions & 98 deletions README.md

This file was deleted.

2 changes: 0 additions & 2 deletions cargo-generate.toml

This file was deleted.

16 changes: 16 additions & 0 deletions codegen.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
import type { CodegenConfig } from '@graphql-codegen/cli'

const config: CodegenConfig = {
overwrite: true,
schema: 'src/schema.graphql',
generates: {
'src/generated/graphql.ts': {
plugins: ['typescript', 'typescript-resolvers'],
},
'./graphql.schema.json': {
plugins: ['introspection'],
},
},
}

export default config
Loading

0 comments on commit b977294

Please sign in to comment.