github.com/geneva/gqlgen@v0.17.7-0.20230801155730-7b9317164836/codegen/testserver/followschema/useptr.graphql (about)

     1  type A {
     2      id: ID!
     3  }
     4  
     5  type B {
     6      id: ID!
     7  }
     8  
     9  union TestUnion = A | B
    10  
    11  extend type Query {
    12      optionalUnion: TestUnion
    13  }