UNPKG

simple-graphql

Version:

The simple way to generates GraphQL schemas and Sequelize models from your models definition.

8 lines (7 loc) 225 B
import { GraphQLInputType, GraphQLScalarType } from 'graphql'; export default function unionInputType(options: { name: string; inputValueTypes: { [key: string]: GraphQLInputType; }; }): GraphQLScalarType;