Running GraphiQL
Discover how to set up and run GraphiQL using Absinthe in Elixir. Explore executing queries through the in-browser IDE, leveraging autocompletion, introspection, and viewing JSON responses for your GraphQL schema.
We'll cover the following...
We'll cover the following...
GraphiQL
GraphiQL is an in-browser IDE for exploring GraphQL. To make things easy for the user, Absinthe integrates with the three following versions of GraphiQL:
- The official interface
- The advanced version
- The GraphQL playground
All three are built into the absinthe_plug package and are ready to go with just a little configuration. The absinthe_plug dependency ...