https://github.com/seanghay/mkql
An instant GraphQL doc viewer powered by Deno.
https://github.com/seanghay/mkql
deno markdown
Last synced: about 1 month ago
JSON representation
An instant GraphQL doc viewer powered by Deno.
- Host: GitHub
- URL: https://github.com/seanghay/mkql
- Owner: seanghay
- Created: 2022-10-05T04:12:40.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2022-10-05T09:40:38.000Z (over 3 years ago)
- Last Synced: 2025-01-22T20:11:17.690Z (over 1 year ago)
- Topics: deno, markdown
- Language: HTML
- Homepage: https://mkql.deno.dev/
- Size: 267 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
An instant GraphQL doc viewer powered by Deno.

## Usage
There are several methods
### Method 1
Using query params
```
https://mkql.deno.dev/?url=https://api.spacex.land/graphql
```
[Visit](https://mkql.deno.dev/?url=https://api.spacex.land/graphql)
> **protocol** is optional (default: `https`)
```
https://mkql.deno.dev/?url=api.spacex.land/graphql
```
[Visit](https://mkql.deno.dev/?url=api.spacex.land/graphql)
---
### Method 2
Using path
```
https://mkql.deno.dev/api.spacex.land/graphql
```
[Visit](https://mkql.deno.dev/api.spacex.land/graphql)
Nested path
```
https://mkql.deno.dev/api.spacex.land/api/south-east-1/graphql
```
---
### Method 3 (Recommended)
It will add `/graphql` add the end if no path is provided
```
https://mkql.deno.dev/api.spacex.land
```
[Visit](https://mkql.deno.dev/api.spacex.land)