Strapi GraphQL endpoint?

@DMehaffy thanks for the reply. Here’s my plugins.js

module.exports = ({ env }) => ({
  upload: {
    provider: "aws-s3",
    providerOptions: {
      accessKeyId: env("AWS_ACCESS_KEY_ID"),
      secretAccessKey: env("AWS_ACCESS_SECRET"),
      region: env("AWS_REGION"),
      params: {
        Bucket: env("AWS_BUCKET_NAME")
      }
    }
  },
  graphql: {
    endpoint: "/graphql",
    shadowCRUD: true,
    playgroundAlways: true,
    depthLimit: 7,
    amountLimit: 100,
    apolloServer: {
      tracing: false
    }
  }
});

I’m also having issues connecting to graphql from my Nuxt frontend and saw this when debugging (see forum post ). I am thinking it may be related somehow.
Any ideas?