Nim implementation of GraphQL with sugar and steroids
Go to file
jangko 50e7e5b467
allow cross-compiling on Linux for Windows
fix accidental wrong rebase and push
2022-03-25 17:06:27 +07:00
.github/workflows fixes nim caching in ci 2021-11-01 13:13:58 +07:00
docs update docs related to deprecation 2022-03-11 23:45:56 +07:00
fuzzer
graphql allow cross-compiling on Linux for Windows 2022-03-25 17:06:27 +07:00
playground add secure mode to graphql http server 2021-08-16 13:24:23 +07:00
resources
tests Allow deprecation of input values (field args, directive args, input fields) 2022-03-11 21:16:17 +07:00
.gitignore
Dockerfile playground: add support to run inside docker 2021-07-04 11:41:08 +07:00
LICENSE-APACHEv2
LICENSE-MIT
README.md playground: add support to run inside docker 2021-07-04 11:41:08 +07:00
graphql.nim implement basic intrumentation infrastructure 2021-05-10 19:41:37 +07:00
graphql.nimble bump version to 0.2.22 2022-03-25 14:23:43 +07:00

README.md

nim-graphql

GraphQL Logo

License: Apache License: MIT Github action

Introduction

Enjoy writing graphql service in plain Nim!. You decide when to use more syntactic sugars offered by Nim templates. And you can choose whether you want to use macros or not, we don't impose them to you.

Designed from ground up to be easily tested part by part, you can quickly implement your service while writing a comprehensive test suite for it.

You can choose which transport mechanism to deliver your service. Over http or secure-http, websocket or secure-websocket, ipc or rpc, rawsocket, and OS stdin/stdout. Not all of these mechanisms provided by nim-graphql, but the freedom is there.

Documentation

If you are interested in contributing to nim-graphql development, the official specification is here.

If you want to know how to use nim-graphql or how nim-graphql works, the documentation is available here.

Playground

You can play with our playground graphql http server using graphql client such as Altair GraphQL client or using builtin graphiql user interface.

  • Using Starwars schema/api.
$ nimble starwars

or

$ nim c -r playground/swserver starwars
  • Using Ethereum schema/api.
$ nimble ethereum

or

$ nim c -r playground/swserver ethereum

To run the playground server with docker, you can execute this commands:

$ docker build -t graphql .
$ docker run -p 8547:8547 -t graphql

The server is accessible at this address http://127.0.0.1:8547/graphql and the web user interface at http://127.0.0.1:8547/graphql/ui.

Installation

You can use Nim's official package manager Nimble to install nim-graphql:

$ nimble install https://github.com/status-im/nim-graphql.git

or

$ nimble install graphql

Contributing

When submitting pull requests, please add test cases for any new features or fixes and make sure nimble test is still able to execute the entire test suite successfully.

License

Licensed and distributed under either of

or

at your option. These files may not be copied, modified, or distributed except according to those terms.