Catch the highlights of GraphQLConf 2023! Click for recordings. Or check out our recap blog post.
Docs
Configuration
Sources
GraphQL Source

GraphQL Source

An upstream based on a simple, single GraphQL endpoint.

By using this source, you can easily wrap an existing GraphQL upstream server, and enrich it with features and plugins.

Configuration

Examples

YAML

type: "graphql"
id: "my-source"
config:
  endpoint: "https://my-source.com/graphql"

JSON

{
  "type": "graphql",
  "id": "my-source",
  "config": {
    "endpoint": "https://my-source.com/graphql"
  }
}

Reference

endpoint
string
required

The HTTP(S) endpoint URL for the GraphQL source.