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

00
Days
00
Hours
00
Minutes
00
Seconds
Go back

Challenge #3

Will it compose?

Subgraph 1

directive @shareable on FIELD_DEFINITION | OBJECT
type Query {
onTheThirdDayOfGraphmas: WunderGraph!
}
type WunderGraph {
gaveToMe: [FrenchHen]! @shareable
}
type FrenchHen {
clucksGiven(atLeastOne: Boolean!): Int! @shareable
}

Subgraph 2

directive @shareable on FIELD_DEFINITION | OBJECT
type WunderGraph @shareable {
gaveToMe: [FrenchHen!]!
}
type FrenchHen {
clucksGiven: Int! @shareable
}