Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/adelsz/graphql-deno
- Owner: adelsz
- Created: 2020-05-20T18:47:43.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-03-26T18:15:46.000Z (over 2 years ago)
- Last Synced: 2024-04-14T03:56:56.203Z (7 months ago)
- Topics: deno, graphql, graphql-js, ts, typescript
- Language: JavaScript
- Size: 649 KB
- Stars: 42
- Watchers: 5
- Forks: 1
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
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.