@strapi/plugin-graphql 5.0.0-beta.4 → 5.0.0-beta.6

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.
@@ -565,7 +565,10 @@ const contentAPI = ({ strapi: strapi2 }) => {
565
565
  }
566
566
  const schema = buildMergedSchema({ registry });
567
567
  const extension = extensionService.generate({ typeRegistry: registry });
568
- const schemaWithResolvers = addResolversToSchema(schema, extension.resolvers);
568
+ const schemaWithResolvers = addResolversToSchema({
569
+ schema,
570
+ resolvers: extension.resolvers
571
+ });
569
572
  const outputs = {
570
573
  schema: config2("artifacts.schema", false),
571
574
  typegen: config2("artifacts.typegen", false)