github.com/nathanstitt/genqlient@v0.3.1-0.20211028004951-a2bda3c41ab8/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 }