Is it possible in GraphQL to have an input type that is also a union?
Something like:
const DynamicInputValueType = new GraphQLUnionType({
name: 'DynamicInputType',
types: [GraphQLString, GraphQLFloat, GraphQLInt]
})
but also able to be used as a input for a mutation?