Skip to content

gabotechs/node-graphqxl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

31 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

yarn add -D node-graphqxl

or

npm install --save-dev node-graphqxl

Usage

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

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