Skip to content
This repository was archived by the owner on Dec 20, 2024. It is now read-only.

Files

Latest commit

 

History

History

website

title
What is GraphQL Helix?

What is GraphQL Helix?

GraphQL Helix is a collection of utility functions for building your own GraphQL HTTP server. You can check out Building a GraphQL server with GraphQL Helix on DEV for a detailed tutorial on getting started.

Features

Framework and runtime agnostic

Use whatever HTTP library you want. GraphQL Helix works in Node, Deno and in the browser.

HTTP first

GraphQL Helix allows you to create a GraphQL over HTTP specification-compliant server, while exposing a single HTTP endpoint for everything from documentation to subscriptions.

Server push and client pull

GraphQL Helix supports real-time requests with both subscriptions and @defer and @stream directives.

Flexible

GraphQL Helix abstracts away logic that's common to all GraphQL HTTP servers, while leaving the implementation to you. Implement the features you want and take full control of your transport layer.

Minimal

No bloat. No paid platform integration. Zero dependencies outside of graphql-js