graphql-api-schema v0.5.8
graphql-api-schema
Generates a simple ApiSchema from GraphQLSchema to give simple way to navigate into with typescript.
Can generate and update a JSON file each time apiSchema is modified by a new graphQLSchema with apiSchema.setGraphQLSchema(graphQLSchema).
The JSON file hydrate apiSchema at initialisation time when graphQLSchema is not given.
Examples
With the static form :
import { apiSchema } from 'graphql-api-schema'
// List of directives
apiSchema.directives.keys[] // => [ 'include', 'skip', 'deprecated' ]
// Args of directive 'skip'
apiSchema.directives['skip'].args.keys() // => [ 'if' ]apiSchema.directives.get('skip').args.get('if') gives :
{
name: 'if',
description: 'Skipped when true.',
type: {
isList: false,
isNullable: false,
of: {
kind: 'SCALAR',
name: 'Boolean',
description: 'The `Boolean` scalar type represents `true` or `false`.'
}
},
defaultValue: null
}Initialisation
For the static version :
import { GraphQLApiSchema } from 'graphql-api-schema'
GraphQLApiSchema.init({
// From root of project
dirName: 'src'
// File not modified if not different
fileName: 'apiSchema.json'
// Same parameter as for JSON.stringify
jsonSpaces: 2
})For the object version, apiSchema can't be accessed staticaly but work's the same way :
import { GraphQLApiSchema } from 'graphql-api-schema'
const graphQLApiSchema = new GraphQLApiSchema({
dirName: 'src'
fileName: 'apiSchema.json'
})
const apiSchema = graphQLApiSchema.apiSchemaFile generation is optional.
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago
5 years ago