Navigate:
All Reposgraphiql
~$GRAPHI0.0%

GraphiQL: GraphQL IDE monorepo and language service

Browser-based GraphQL IDE with language service tooling.

LIVE RANKINGS • 06:51 AM • STEADY
OVERALL
#208
49
BACKEND & APIS
#12
3
30 DAY RANKING TREND
ovr#208
·Backe#12
STARS
16.8K
FORKS
1.8K
DOWNLOADS
428.5K
7D STARS
+7
7D FORKS
+2
See Repo:
Share:

Learn more about graphiql

GraphiQL is a monorepo project under the GraphQL Foundation that provides a reference implementation of a GraphQL IDE along with supporting libraries and services. The core GraphiQL IDE is a React-based application that runs in browsers and uses CodeMirror for editing with schema-driven language features. The monorepo includes a language service layer that powers editor features like completion and diagnostics, LSP server implementations for IDE integration, and editor mode packages for CodeMirror and Monaco Editor. These components can be used together as a complete IDE or individually integrated into other development tools and frameworks.


1

Modular monorepo structure

Separates concerns into independent packages including the IDE, language service, editor modes, and LSP server, allowing developers to adopt individual components or the complete ecosystem.

2

Multiple editor integrations

Provides language modes and plugins for CodeMirror 5, CodeMirror 6, and Monaco Editor, enabling GraphQL support across different editor platforms and use cases.

3

LSP and CLI tooling

Includes a Language Server Protocol implementation and command-line service for IDE integration beyond browser-based usage, supporting development environments like VS Code and other LSP-compatible editors.


import React from 'react';
import { GraphiQL } from 'graphiql';
import 'graphiql/graphiql.css';

function App() {
  const fetcher = async (graphQLParams) => {
    const response = await fetch('/graphql', {
      method: 'POST',
      headers: { 'Content-Type': 'application/json' },
      body: JSON.stringify(graphQLParams),
    });
    return response.json();
  };

  return <GraphiQL fetcher={fetcher} />;
}

vgraphiql@5.2.1

Pins monaco-editor to 0.52.2 to resolve compatibility issues.

  • Pin monaco-editor dependency to version 0.52.2 to avoid breaking changes in newer releases.
  • Update @graphiql/react to 0.37.2 as a transitive dependency change.
v@graphiql/react@0.37.2

Pins monaco-editor to 0.52.2 to prevent compatibility issues with newer versions.

  • Update dependencies to lock monaco-editor at version 0.52.2 for stability.
  • No breaking changes or migration steps required for this patch release.
vgraphiql@5.2.0

Adds loader for operation editor initial state, command palette styling fixes, and settings dialog keyboard shortcut.

  • Use new loader UI during operation editor initialization to improve perceived performance.
  • Open GraphiQL settings dialog with Cmd/Ctrl + , keyboard shortcut for faster configuration access.


[ EXPLORE MORE ]

Related Repositories

Discover similar tools and frameworks used by developers