1.0.4 • Published 3 years ago

@nhamata/graphql-parser v1.0.4

Weekly downloads
-
License
ISC
Repository
github
Last release
3 years ago

graphql-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. Most tools, may not support the full spec and have bloated dependencies, or is nested in a larger module which may not be useful. This module is fairly simple and follows the current graphql 2018 spec including nested directives (which many current popular libraries have difficulty with). It well defines each component via typescript type definitions.

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, this tool is useful for making a well defined specification of this domain language. This is especially useful for languages that may not have current or feature filled graphql libraries yet, as this tool can be used to generate your own client library based on schema text. The intention of a tool like this is to leverage this utility and extend it for tasks such as code generation for a client, or request/response format checks. General code generators using this parsing library will be made, of course they may not satisfies your needs as generators can be quite specific to a project In order to utilize this library you must issue at the root

npm install @nhamata/graphql-parser
import { generateSchemaObject } from '@nhamata/graphql-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>;
1.0.4

3 years ago

1.0.3

3 years ago

1.0.2

3 years ago

1.0.1

3 years ago

1.0.0

3 years ago