You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[GraphiQL](https://github.com/graphql/graphiql) becomes accessible at the root `/graphiql` if `graphiql.enabled` application property is set to `true`.
124
+
[GraphiQL](https://github.com/graphql/graphiql) becomes accessible at the root `/graphiql` if `graphql.graphiql.enabled` application property is set to `true`.
123
125
124
126
Note that GraphQL server must be available at `/graphql/*` context to be discovered by Graph*i*QL.
125
127
@@ -128,29 +130,30 @@ Note that GraphQL server must be available at `/graphql/*` context to be discove
128
130
Available Spring Boot configuration parameters (either `application.yml` or `application.properties`):
129
131
130
132
```yaml
131
-
graphiql:
132
-
mapping: /graphiql
133
-
endpoint:
134
-
graphql: /graphql
135
-
subscriptions: /subscriptions
136
-
subscriptions:
137
-
timeout: 30
138
-
reconnect: false
139
-
basePath: /
140
-
enabled: true
141
-
pageTitle: GraphiQL
142
-
cdn:
143
-
enabled: false
144
-
version: latest
145
-
props:
146
-
resources:
147
-
query: query.graphql
148
-
defaultQuery: defaultQuery.graphql
149
-
variables: variables.graphql
150
-
variables:
151
-
editorTheme: "solarized light"
152
-
headers:
153
-
Authorization: "Bearer <your-token>"
133
+
graphql:
134
+
graphiql:
135
+
mapping: /graphiql
136
+
endpoint:
137
+
graphql: /graphql
138
+
subscriptions: /subscriptions
139
+
subscriptions:
140
+
timeout: 30
141
+
reconnect: false
142
+
basePath: /
143
+
enabled: true
144
+
pageTitle: GraphiQL
145
+
cdn:
146
+
enabled: false
147
+
version: latest
148
+
props:
149
+
resources:
150
+
query: query.graphql
151
+
defaultQuery: defaultQuery.graphql
152
+
variables: variables.graphql
153
+
variables:
154
+
editorTheme: "solarized light"
155
+
headers:
156
+
Authorization: "Bearer <your-token>"
154
157
```
155
158
156
159
By default GraphiQL is served from within the package. This can be configured to be served from CDN
0 commit comments