Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/adelsz/graphql-deno

GraphQL-JS ported to Deno
https://github.com/adelsz/graphql-deno

deno graphql graphql-js ts typescript

Last synced: 4 days ago
JSON representation

GraphQL-JS ported to Deno

Awesome Lists containing this project

README

        

## GraphQL-Deno

This is a one-to-one port of [graphql-js](https://github.com/graphql/graphql-js) to [Deno](https://deno.land/).
It is working, fully adapted to Deno and exports both TS types and JS code.

Usage:
```ts
import {
graphql,
GraphQLSchema,
GraphQLObjectType,
GraphQLString,
} from "https://raw.githubusercontent.com/adelsz/graphql-deno/v15.0.0/mod.ts";
```

You can test it in this repository by running:
```
deno run ./test.ts
```

Releases and tags of this repository will mirror [graphql-js](https://github.com/graphql/graphql-js) releases.