github.com/Desuuuu/genqlient@v0.5.3/generate/testdata/errors/StructOptionWithFragments.schema.graphql (about) 1 type Query { 2 myInterface: MyInterface 3 } 4 5 interface MyInterface { 6 f: String! 7 } 8 9 type MyObject implements MyInterface { 10 f: String! 11 g: String! 12 } 13 14 type OtherObject implements MyInterface { 15 f: String! 16 }