-
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.
- Loading branch information
1 parent
4212cd5
commit 840d3f4
Showing
10 changed files
with
452 additions
and
2,598 deletions.
There are no files selected for viewing
22 changes: 1 addition & 21 deletions
22
codegen/testserver/embedded/models.go → codegen/testserver/embedded.go
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,17 @@ | ||
extend type Query { | ||
case1: Case1 | ||
case2: Case2 | ||
# case3: Case3 | ||
} | ||
|
||
type Case1 @goModel(model:"testserver.Case1") { | ||
exportedEmbeddedPointerExportedMethod: String! | ||
} | ||
|
||
type Case2 @goModel(model:"testserver.Case2") { | ||
unexportedEmbeddedPointerExportedMethod: String! | ||
} | ||
|
||
# type Case3 @goModel(model:"testserver.Case3") { | ||
# explicitInterfaceMethod: String! | ||
# } |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.