Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

perf: simpler schema types for infer #1208

Merged
merged 6 commits into from
Oct 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ blank_issues_enabled: false
contact_links:
- name: ✋ Question
about: You have a question about something you're not sure about
url: https://github.com/jasonkuhrt/graffle/discussions/new
url: https://github.com/graffle-js/graffle/discussions/new
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ const graffle = Graffle.create({
* @remarks Typically this type would come from your code generation tool.
*
* @see https://the-guild.dev/graphql/codegen/plugins/presets/preset-client#documentmode
* @see https://github.com/jasonkuhrt/graffle/issues/997
* @see https://github.com/graffle-js/graffle/issues/997
*/
type Document = TypedDocument.String<
{
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@
],
"repository": {
"type": "git",
"url": "https://github.com/jasonkuhrt/graffle.git"
"url": "https://github.com/graffle-js/graffle.git"
},
"keywords": [
"graphql",
Expand All @@ -65,9 +65,9 @@
},
"license": "MIT",
"bugs": {
"url": "https://github.com/jasonkuhrt/graffle/issues"
"url": "https://github.com/graffle-js/graffle/issues"
},
"homepage": "https://github.com/jasonkuhrt/graffle",
"homepage": "https://github.com/graffle-js/graffle",
"scripts": {
"serve:pokemon": "tsx tests/_/services/pokemonManual.ts",
"gen:graffle": "pnpm gen:graffle:tests && pnpm build && cd website && pnpm gen:graffle",
Expand Down
Loading