graphql-schema-parser v1.0.9
GraphQL Schema Parser
npmjs link: https://www.npmjs.com/package/graphql-schema-parser
Description
This is a minimal, tool with documented source code, and well defined type definitions used to parse graphql schema text according to the 2018 spec. It generates an object that has properties corresponding to the input graphql schema. There are absolutely no dependencies, this utility was made using only the basic node libraries. It is intended to be simple minimal and easy to use so you can extend it to whatever use that fits your needs. This module is fairly simple and follows the current graphql 2018 spec including nested directives.
Use Cases
I built this tool so that any commonly used object within the entire scope of a project, such as error events, general logs etc. can also be defined using a graphql schema specification. This standardizes the language throught a project such that the end points and internal domain language throughout the project would be concretely specified using the same specification. This is useful as many projects have their own domain specific languages for interacting with components or services. In order to utilize this library you must issue at the root
npm install graphql-schema-parser
import { generateSchemaObject } from 'graphql-schema-parser'
Then you can use the schema object as you desire. Thats all there is needed, a single funcitonal call
Quick Type Defintion Reference, as always the files inside the ./typedefs are the most accurate.
The most basic type that has a single mandatory property
NamedComponent:{
name:string
}
NameIndex<ObjectDefinition>
This object represents a map whose key is some string (generally the name or id) and value is the defined generic TYPE
NameIndex<TYPE>
isExtended:boolean
implements?:NameIndex<NamedComponent>; //For object types only
name:string;
fields:NameIndex<TYPE extends InputFieldDefinition|ParameterFieldDefinition>;
directives?:NameIndex<DirectiveAnnotations>;
description?:string
All element based objects (objects that list out items, and do not define fields) will have the same properties as the above except instead of fields it has:
elements:NameIndex<TYPE extends Element>;
the elements indexed are generally some NamedComponent restricted by an enumeration
type:string
name:string
description?:string
directives?:NameIndex<DirectiveAnnotations>;
parameters?:NameIndex<ParameterFieldDefinition>;
otherwise the parmeters is defined as
parameters?:NameIndex<InputFieldDefinition>;
All Parameters that belong to a field that can be parameterized can contain
type:string
name:string
directives?:NameIndex<DirectiveAnnotations>;
description?:string
name:string,
parameters?:NameIndex<ParameterComponent>;
type:string
name:string
directives?:NameIndex<DirectiveAnnotations>;