github.com/operandinc/gqlgen@v0.16.1/codegen/testserver/followschema/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/operandinc/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  }