github.com/opiuman/genqlient@v1.0.0/generate/testdata/errors/ConflictingSelections.schema.graphql (about) 1 type Query { 2 myField: InterfaceType 3 } 4 5 interface InterfaceType { 6 subField: SubFieldType 7 } 8 9 type OnePossibleConcreteType implements InterfaceType { 10 subField: SubFieldType 11 } 12 13 type SubFieldType { 14 subSubField1: String! 15 subSubField2: String! 16 subSubField3: String! 17 subSubField4: String! 18 }