Merge pull request #12773 from e23thr/master

fix emailConfirmation graphql mutation
This commit is contained in:
Alexandre BODIN 2022-05-20 11:54:51 +02:00 committed by GitHub
commit 94d986ee4c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -19,7 +19,7 @@ module.exports = ({ nexus, strapi }) => {
async resolve(parent, args, context) {
const { koaContext } = context;
koaContext.request.body = toPlainObject(args);
koaContext.query = toPlainObject(args);
await strapi
.plugin('users-permissions')