ToolsHub
//GraphQL Query Builder

Build a single GraphQL operation from parts. Variable list can be $id: ID! or ($id: ID!). Selection can be a block starting with { or field lines that will be wrapped.

Preview (raw)
query HeroForEpisode ($ep: Episode!) {
hero(episode: $ep) {
    id
    name
  }
}
Validated & prettified

Related Tools