github.com/99designs/gqlgen@v0.17.45/codegen/testserver/singlefile/issue896.graphql (about) 1 # This example should build stable output. If the file content starts 2 # alternating nondeterministically between two outputs, then see 3 # https://github.com/99designs/gqlgen/issues/896. 4 5 extend schema { 6 query: Query 7 subscription: Subscription 8 } 9 10 type CheckIssue896 {id: Int} 11 12 extend type Query { 13 issue896a: [CheckIssue896!] # Note the "!" or lack thereof. 14 } 15 16 extend type Subscription { 17 issue896b: [CheckIssue896] # Note the "!" or lack thereof. 18 }