Disable field me from graphql schema

System Information
  • Strapi Version: 4.10
  • Operating System:
  • Database:
  • Node Version: 16.15
  • NPM Version: 9.6
  • Yarn Version:

Hi, i need to federate my graphql but i have some conflict with the “me” on type query from the users-permissions plugin

  const extensionService = strapi.plugin("graphql").service("extension");
  extensionService
    .shadowCRUD("plugin::users-permissions.permission")
    .disableQueries();
  extensionService
    .shadowCRUD("plugin::users-permissions.role")
    .disableQueries();
  extensionService
    .shadowCRUD("plugin::users-permissions.user")
    .disableQueries();

i have managed to remove all the queries from this plugin with the extensions service shadowCRUD function but i cant find what parameter i need to pass to disable the query “me”

i have tried things like pluggin::user-permissions.me but it doesnt work

any ideas ?