-
Notifications
You must be signed in to change notification settings - Fork 20
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
update final branch through connecting server pieces
- Loading branch information
Liz Hennessy
authored and
Liz Hennessy
committed
Jan 31, 2024
1 parent
441d4e2
commit f3e7e5a
Showing
9 changed files
with
3,688 additions
and
115 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
import type { CodegenConfig } from "@graphql-codegen/cli"; | ||
|
||
const config: CodegenConfig = { | ||
schema: "./src/schema.ts", | ||
generates: { | ||
"./src/types.ts": { | ||
plugins: ["typescript", "typescript-resolvers"], | ||
config: { | ||
contextType: "./context#DataSourceContext", | ||
}, | ||
}, | ||
}, | ||
}; | ||
|
||
export default config; |
Oops, something went wrong.