Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/gabotechs/node-graphqxl
- Owner: gabotechs
- Created: 2022-11-06T11:09:19.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-18T19:04:23.000Z (8 months ago)
- Last Synced: 2024-04-24T09:09:00.878Z (7 months ago)
- Topics: api, graphql, graphqxl, schema, server
- Language: JavaScript
- Homepage: https://github.com/gabotechs/graphqxl
- Size: 3.77 MB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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"
}
}
```