DEV Community

Cover image for Postman now supports GraphQL
Tomek Poniatowicz for GraphQL Editor

Posted on • Updated on • Originally published at blog.graphqleditor.com

Postman now supports GraphQL

GraphQL is a query language for APIs. It's becoming more popular because of the many benefits it offers compared to REST APIs, of which the most important one is smarter data fetching.

The querying model offered by GraphQL is showing its real power when it comes to working with large APIs.

GraphQL vs REST

GraphQL allows to specify what data we need in a query and that's what's going to be included in a response – nothing more, nothing less, just the data we asked for in a single request. On the other hand, when fetching for the same data with REST we would end up with multiple REST roundtrips ...

Source: blog.apollographql.com

... or imagine it this way:

REST vs GraphQL

Source: crystallize.com

GraphQL in Postman

Postman joins the group of companies acknowledging the GraphQL qualities and has recently announced the support for GraphQL in their service. The latest release of Postman v7.2 enables:

  • sending GraphQL queries in the request body,
  • GraphQL variables,
  • GraphQL query autocompletion.

This is a great complement to the previous update which introduced schema support, all that combined makes it possible to create & store GraphQL schemas directly in Postman itself!

GraphQL BETA in Postman

Source: blog.getpostman.com

Top comments (7)

Collapse
 
tomekbuszewski profile image
Tomek Buszewski

Now this is some serious news. Thanks for letting us know!

Collapse
 
mikeborn profile image
Michael Born

Ditto, great news! Postman is awesome.

Collapse
 
juancarlospaco profile image
Juan Carlos

Insomnia support it since years ago.

Collapse
 
lauragift21 profile image
Gift Egwuenu

This is awesome. I already use Insomnia since it supports both REST and GraphQL but I'm gonna try this out!

Collapse
 
rudsona profile image
Rudson Augustin

I like it better than Postman, its design is minimal and intuitive.

Collapse
 
faraazahmad profile image
Syed Faraaz Ahmad

Just yesterday, as I was ditching REST and bringing on GraphQL in my personal project, I was wondering if Postman would ever support GraphQL. This is great news!

Collapse
 
khandfw profile image
Khan

Great info, thanks for sharing!!!