_Plugin__removeUserFromEventByNfc: async (root, { input }, { models, user }) => {
                    checkIsAuthorized([UserType.Organizer, UserType.Volunteer, UserType.Sponsor], user);
                    const inputUser = await getUser(input.nfcId, models);
                    if (!inputUser) throw new UserInputError(`user with nfc Id ${input.nfcId} not found`);
                    return removeUserFromEvent(inputUser._id.toString(), input.event, models);