github.com/opiuman/genqlient@v1.0.0/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 }