You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
type Bird {
returnInt: Int
}
type Bee {
returnInt: Int
}
union BirdsAndBees = Bird | Bee
type RootQuery {
returnBirdsAndBees: [BirdsAndBees]
}
schema {
query: RootQuery
}
mockServer ignores the resolve function for implementation of union or interface types. For example this mockMap:
on this schema:
with the following query:
returns
12345
instead of54321
The text was updated successfully, but these errors were encountered: