An open API service indexing awesome lists of open source software.

https://github.com/jsonqlness/jql-validation-js

Validate JSON against GraphQL Schema
https://github.com/jsonqlness/jql-validation-js

graphql json library nodejs validation

Last synced: 3 months ago
JSON representation

Validate JSON against GraphQL Schema

Awesome Lists containing this project

README

          




JQL




# JQL

> Validate JSON with a GraphQL schema

## Install

```
$ npm install --save-dev jql-validation
```

## Usage

Define a schema:

```graphql
enum Episode {
NEWHOPE
EMPIRE
JEDI
}

type Character {
id: ID!
name: String!
appearsIn: [Episode]!
isLegacy: Boolean!
}
```

Validate you JSON:

TO DO!! 🤖

## Created by

- [Nicola Zanon](https://nicola-zanon.com)
- [Korneliusz Rabczak](http://thecookiezen.com)

## License

MIT ©