Published on
1 min read

GraphiQL IDE Alternatives for Development/Testing/Exploring GraphQL Servers

Authors

GraphiQL is a great in-browser IDE for testing GraphQL endpoints. However, it has limitations: it doesn't support saving queries (like Postman) and lacks an easy way to pass custom headers (like auth tokens). Here are some powerful alternatives.

1. GraphQL IDE

GraphQL IDE is an extensive IDE that allows you to manage projects, store queries, toggle history, and set environment variables for dynamic headers.

Installation (macOS):

brew install --cask graphql-ide
Execute Queries

2. GraphiQL.app

GraphiQL.app is a light, Electron-based wrapper around GraphiQL. It provides a tabbed interface for editing and testing.

Installation (macOS):

brew install --cask graphiql
GraphiQL App

3. GraphiQL Feen (Chrome Extension)

GraphiQL Feen is a Chrome Extension that adds features like:

  • Save/Load queries and variables.
  • Server definitions with specific settings.
  • Header overrides and CSRF token support.
  • Export/Import application state.
GraphiQL Feen
TwitterLinkedInHacker News