-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #900 from zannen/master
Update UniquenessKey for when Element is/isn't nullable (#896)
- Loading branch information
Showing
17 changed files
with
649 additions
and
302 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
Large diffs are not rendered by default.
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,18 @@ | ||
# This example should build stable output. If the file content starts | ||
# alternating nondeterministically between two outputs, then see | ||
# https://github.com/99designs/gqlgen/issues/896. | ||
|
||
extend schema { | ||
query: Query | ||
subscription: Subscription | ||
} | ||
|
||
type CheckIssue896 {id: Int} | ||
|
||
extend type Query { | ||
issue896a: [CheckIssue896!] # Note the "!" or lack thereof. | ||
} | ||
|
||
extend type Subscription { | ||
issue896b: [CheckIssue896] # Note the "!" or lack thereof. | ||
} |
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
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.