The next composition challenge will unlock at midnight (UTC) on May, 20th

00
Days
00
Hours
00
Minutes
00
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!
}