1.1.2 • Published 7 years ago

graphql-anyscalar v1.1.2

Weekly downloads
18
License
MIT
Repository
github
Last release
7 years ago

graphql-anyscalar

graphql-anyscalar provides an AnyScalar GraphQL type. This type can be used to handle any GraphQL scalar type (except GraphQLID), resolving by examining the input value.

Installation

yarn add graphql-anyscalar

Usage

const {
  AnyScalar,
} = require('graphql-anyscalar');
const {
  GraphQLObjectType,
} = require('graphql');

const someObject = new GraphQLObjectType({
  name: 'someObject',
  fields: {
    // Use AnyScalar like you would use some other scalar type like GraphQLString.
    someScalar: { type: AnyScalar }
  },
});