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

https://github.com/ubugeeei/zisakuql

A toy scratch implementation query language and runtime like GraphQL.
https://github.com/ubugeeei/zisakuql

deno graphql hono scratch-implementation typescript

Last synced: 3 months ago
JSON representation

A toy scratch implementation query language and runtime like GraphQL.

Awesome Lists containing this project

README

        

# ZisakuQL
A toy scratch implementation query language and runtime like GraphQL.

## Usage
```sh
> deno run --allow-net src/main.ts
# Listening on http://localhost:8000/
```
```sh
curl http://localhost:8000/zisakuql --data"\
query getTodo(id: 3) {\
name\
description\
dueDate\
owner {\
id\
username\
}\
}\
" | jq
```

## Examples

スクリーンショット 2022-12-04 1 36 25

スクリーンショット 2022-12-04 1 38 53

![スクリーンショット 2022-12-04 2 03 33](https://user-images.githubusercontent.com/71201308/205452807-6029eee0-0f1a-4288-95cb-cec6aa29082f.png)