graphiql-with-graphiql-explorer

0.15.1 • Public • Published

GraphiQL with graphiql-explorer extension

This is a meta-package meant to bring together the most popular GraphiQL plugins and make them easy to flip on and off.

NOTE: Forked in March 2022 from graphigl-with-extensions

(upstream seemed to be not actively updating dependencies)

  • Applied most outstanding PRs
  • Updated to newest dependancies
  • Rename to avoid name collision in NPM/Unpkg

To build:

yarn build

The original GraphiQL package is consumable as a single React component, even without JSX. This makes it very easy to embed just about anywhere you can put JavaScript that might not have a full modern build pipeline (e.g. Rails with a sprockets setup).

Usage is easy:

npm install --save graphiql-with-graphiql-explorer
# or
yarn add graphiql-with-graphiql-explorer
import React from 'react';
import ReactDOM from 'react-dom';
import GraphiQL from 'graphiql-with-extensions';
import fetch from 'isomorphic-fetch';

function graphQLFetcher(graphQLParams) {
  return fetch(window.location.origin + '/graphql', {
    method: 'post',
    headers: {'Content-Type': 'application/json'},
    body: JSON.stringify(graphQLParams),
  }).then(response => response.json());
}

ReactDOM.render(
  <GraphiQL
    fetcher={graphQLFetcher}
    // Some optional props
    // defaultQuery={''}
    // disableExplorer={false}
  />,
  document.body,
);

Included extensions

Rigth now we only include the latest version of OneGraph's GraphiQL Explorer plugin. Please open an issue if you'd like to see other plugins included.

Usage without build step

Easiest way you can use this to create one html file with customized authentication for your backend and serve it on some url. With that setup you don't need to have npm or javascript ecosystem tools (if your backend is in different stack e.g. python, java, clojure). For minimal example of this approach see static.html

License

graphiql-with-extensions is licensed under the MIT License.
graphiql is licensed under the MIT License.
Documentation is licensed under Creative Common License.

graphiql-with-graphiql-explorer

Readme

Keywords

none

Package Sidebar

Install

npm i graphiql-with-graphiql-explorer

Weekly Downloads

17

Version

0.15.1

License

SEE LICENSE IN LICENSE

Unpacked Size

3.31 MB

Total Files

8

Last publish

Collaborators

  • jkrauska