...

Text file src/github.com/99designs/gqlgen/codegen/testserver/followschema/issue896.graphql

Documentation: github.com/99designs/gqlgen/codegen/testserver/followschema

     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
     5extend schema {
     6  query: Query
     7  subscription: Subscription
     8}
     9
    10type CheckIssue896 {id: Int}
    11
    12extend type Query {
    13  issue896a: [CheckIssue896!] # Note the "!" or lack thereof.
    14}
    15
    16extend type Subscription {
    17  issue896b: [CheckIssue896] # Note the "!" or lack thereof.
    18}

View as plain text