Schema stitching fails to return proper introspection schema with enums.
Closed this issue · 2 comments
qonn commented
In Version 0.10.1,
I am facing an issue while trying to use this functionality with enums. It turns out that the MergeTool.Schema#L17:13
currently does not support enums.
When following the example but with enums on my graphql schema, It says the enums were missing. (GraphQL Playground)
This also occurs on tanka-graphql-samples by simply adding an enum field in type Channel
.
enum ChannelStatus {
A
B
C
}
type Channel {
id: ID!
name: String!
status: ChannelStatus
}
# the rest of schema ...
pekkah commented
Yep. Will fix it on the weekend.