Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/gabotechs/node-graphqxl

Node wrapper for the GraphQXL compiler https://github.com/gabotechs/graphqxl
https://github.com/gabotechs/node-graphqxl

api graphql graphqxl schema server

Last synced: 24 days ago
JSON representation

Node wrapper for the GraphQXL compiler https://github.com/gabotechs/graphqxl

Awesome Lists containing this project

README

        

# node-graphqxl

Node wrapper for compiling GraphQXL schemas in JS based projects. The original GraphQXL
project can be found here https://github.com/gabotechs/graphqxl

## Install

Add `node-graphqxl` as a dev dependency

```shell
yarn add -D node-graphqxl
```
or
```shell
npm install --save-dev node-graphqxl
```

## Usage

The `graphqxl` binary will be available for compiling .graphqxl schemas.

```json
{
"name": "my-package",
"scripts": {
"generate": "graphqxl my-file.graphqxl"
}
}
```