Configure GraphQL Data Source
The GraphQL
data source allows you to introspect GraphQL services and add them to your virtual Graph.
Example Configuration
1
2
3
4
5
6
7
8
9
10
11
First, define the url
which will be used to introspect the GraphQL service. Next, add an optional namespace
to put the GraphQL schema in a specific namespace.
Aside from the url
, you can also define a headers configuration, you can configure mTLS, or set a different URL for subscriptions by setting subscriptionsURL
.
Introspecting protected graphql apis
Refer to the configure introspection for protected API
guide.