-
Notifications
You must be signed in to change notification settings - Fork 25
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Stanislaw Wilczynski
authored and
Stanislaw Wilczynski
committed
Oct 18, 2024
1 parent
504d057
commit ad913b3
Showing
8 changed files
with
165 additions
and
5 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 |
---|---|---|
@@ -1,5 +1,14 @@ | ||
{ | ||
"src": "./src/relay", | ||
"schema": "./src/schema.graphql", | ||
"language": "typescript" | ||
"sources": { | ||
"src/relay": "examples" | ||
}, | ||
"projects": { | ||
"examples": { | ||
"language": "typescript", | ||
"schema": "src/schema.graphql", | ||
"schemaExtensions": [ | ||
"src/clientExtensions.graphql" | ||
] | ||
} | ||
} | ||
} |
18 changes: 18 additions & 0 deletions
18
packages/examples/src/__generated__/schema.all.interface.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,7 @@ | ||
extend type Query { | ||
clientExtension: String | ||
viewData: ViewData | ||
} | ||
type ViewData { | ||
viewDataField: String | ||
} |
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
63 changes: 61 additions & 2 deletions
63
packages/examples/src/relay/pure-relay/__generated__/FeedbackStoryRelayQuery.graphql.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
47 changes: 47 additions & 0 deletions
47
...ges/examples/src/relay/pure-relay/__generated__/Feedback_viewDataRelayFragment.graphql.ts
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.