Setting gqlTypePrefix also prefixes the root query and mutation types – which is likely to have consequences for many GraphQL clients.
Hey @membla, we just released Craft 3.6.6 with a new prefixGqlRootTypes config setting, which toggles whether query, mutation, and subscription types should be prefixed.
So if you add this to config/general.php, you’ll get the expected behavior:
'prefixGqlRootTypes' => false,
Most helpful comment
Hey @membla, we just released Craft 3.6.6 with a new
prefixGqlRootTypesconfig setting, which toggles whetherquery,mutation, andsubscriptiontypes should be prefixed.So if you add this to
config/general.php, you’ll get the expected behavior: