1.0.4 • Published 4 years ago

mini-graphiql v1.0.4

Weekly downloads
74
License
ISC
Repository
-
Last release
4 years ago

Install

yarn add mini-graphiql

Usage in 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.

<MiniGraphiQL url='https://countries.trevorblades.com' query={query1} />