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