Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/remorses/mini-graphiql-playground

Graphiql playground for documentation websites
https://github.com/remorses/mini-graphiql-playground

Last synced: about 2 months ago
JSON representation

Graphiql playground for documentation websites

Awesome Lists containing this project

README

        




mini graphiql









## Install

```
yarn add mini-graphiql
```

## Usage in mdx

```mdx
---
route: /docs/pagination
title: pagination
---
import { MiniGraphiQL } from 'mini-graphiql'
import 'mini-graphiql/dist/style.css'
export const query1 = `
{
continents {
code
name
}
}
`
## Paging forward

You page forward using forst and after arguments.

```