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.
- Host: GitHub
- URL: https://github.com/ubugeeei/zisakuql
- Owner: ubugeeei
- Created: 2022-12-02T13:03:01.000Z (over 2 years ago)
- Default Branch: master
- Last Pushed: 2022-12-03T17:05:01.000Z (over 2 years ago)
- Last Synced: 2025-03-24T19:50:03.077Z (3 months ago)
- Topics: deno, graphql, hono, scratch-implementation, typescript
- Language: TypeScript
- Homepage:
- Size: 26.4 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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
