I am trying to disable introspection on graphql queries through strapi. I added the configuration in config/plugin.js
graphql: {
endpoint: "/graphql",
tracing: false,
shadowCRUD: true,
playgroundAlways: false,
depthLimit: 7,
amountLimit: 100,
apolloServer: {
introspection: false,
},
},
But this has no effect at all