The next composition challenge will unlock at midnight (UTC) on November, 22nd
00
Days00
Hours00
Minutes00
Seconds Go back
Challenge #8
Will it compose?
Subgraph 1
type Query { onTheEighthDayOfGraphmas: WunderGraph!}
interface Lady { name: String! age: Int!}
type WunderGraph { gaveToMe: [Lady!]!}
type Dancer implements Lady { name: String! age: Int! style: String!}
Subgraph 2
interface Lady { name: String! age: Int!}
enum Voice { SOPRANO MEZZO_SOPRANO CONTRALTO}
type Singer implements Lady { name: String! age: Int! voice: Voice!}