GraphiQL
- graphql/graphiql
- Explorer
- Demo
- adopted by
import { createGraphiQLFetcher } from '@graphiql/toolkit';
import { GraphiQL } from 'graphiql';
import React from 'react';
import ReactDOM from 'react-dom';
import 'graphiql/graphiql.css';
const fetcher = createGraphiQLFetcher({
url: 'https://my.backend/graphql',
});
ReactDOM.render(<GraphiQL fetcher={fetcher} />, document.body);