DEV Community

Dalibor Kundrat
Dalibor Kundrat

Posted on

Why GraphQL IDEs on the market are not what you want

😕 This will not be an educational article, but only a murmur about the state of the market.

There are a few GraphQL IDEs on the market today that support various features, but I am not satisfied with any of them. (True state)

These tools should be our internal applications/tools and make it easier to work with GraphQL!

Todays GraphQL IDEs

  • Graphiql - Facebook's oldest original still looks like it's from the 90s and does not support tabs. The tool itself is great because it's stable and provides separate packages under Monorepo that are used by different tools. Let us say it's a tool used to build other tools :)
  • Playground - The good old playground was widely used. It was developed by Prisma, but then moved under Graphiql (Graphql Foundation). With that, the project was discontinued and there is nothing as simple and good anymore. Playground was just good for the old days.
  • Apollo Studio - Apollo has several products to work with, sometimes I do not even know what is deprecated and what is current (Devtools, Studio and whatever) have you tried it? Not really my taste. It's like with the Apollo client, nice to look at but then you realize there's Relay too :) But they have advanced functionality that is true!
  • Altair - No really good UX experience
  • Insomnia - I was surprised by the functionality. I like plugins a lot. It is close to the requirements I will talk about.
  • Firecamp - Another IDE, which has the possibility be good, if they implement what they have planned. But it is not yet finished!
  • And whatever else - I am just not happy with them.

Let me mention one other option that exists. The Postman.

Postman as GraphQL IDE? Not yet. But I see the possibility of it becoming a powerful tool for GraphQL.

This is something I do not understand. They have a great feature set and also support the basics of GraphQL, but they just do not care! Important features like introspection are not supported. If they would invest more time, they could become a gamechanger, but they just do not care. Just check requested PRs.

But back to the topic: if you are a business, you'll probably end up building your own tool.

The requirements

  • Readable UI experience and easy to work with (most current IDEs are garbage for this UX theme)
  • Ability to store your state in the cloud / locally / on your own backend (having your own storage is a really good idea, especially if you are in the private sector)
  • Prepare test collections, import/export work with them.
  • Headless cli to be able to run collections in CI/CD.
  • Voyager built in! Why not? I do not want to have multiple tools.
  • You want to monitor your requests and view telemetry data, you want to understand your requests.
  • Auth, SSL are standard requirements today
  • Query optimization, maybe too much, but it works.

Result

The company ends up developing a custom tool to get all this done, because it's really not hard to do. (Only time matters). We use Graphiql as a base and everything else is just WebApp/cli programming as we know it from our daily work.

Keep things under control.

Goodbye and have a nice day!

Top comments (2)

Collapse
 
shreya_gr profile image
Shreya

Hey thanks for writing this piece. Working on making things better for GraphQL developers. Would you like to share feedback over a demo?

Collapse
 
hinogi profile image
Stefan Schneider