@aj-archipelago/cortex 1.0.15 → 1.0.16
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/server/graphql.js +1 -0
package/package.json
CHANGED
package/server/graphql.js
CHANGED
|
@@ -144,6 +144,7 @@ const build = async (config) => {
|
|
|
144
144
|
|
|
145
145
|
const server = new ApolloServer({
|
|
146
146
|
schema,
|
|
147
|
+
introspection: process.env.NODE_ENV === 'development',
|
|
147
148
|
csrfPrevention: true,
|
|
148
149
|
plugins: plugins.concat([// Proper shutdown for the HTTP server.
|
|
149
150
|
ApolloServerPluginDrainHttpServer({ httpServer }),
|