graphql-type-json
Usage
import GraphQLJSON from 'graphql-type-json';import { GraphQLJSONObject } from 'graphql-type-json';const { GraphQLJSON, GraphQLJSONObject } = require('graphql-type-json');Programmatically-constructed schemas
import GraphQLJSON, { GraphQLJSONObject } from 'graphql-type-json';
export default new GraphQLObjectType({
name: 'MyType',
fields: {
myValue: { type: GraphQLJSON },
myObject: { type: GraphQLJSONObject },
},
});SDL with GraphQL-tools
Last updated