graphql input implements
GraphQLのschemaでは、inputはinput/interfaceを継承できない
code:graphql
input Foo {
text: String
}
interface Bar {
image: String
}
// できない
input Hoge implements Foo {
}
input Hoge implements Bar {
}
inputのunion typeを使えるようにするRFCはでている
https://github.com/facebook/graphql/issues/488