In Strapi every user-defined collection type has a default services which allow to create/find/update/etc. on the corresponding Model. For Example the below code in a Strapi controller will update a bill collection type with the given data:
await strapi.services.bill.update({id}, {verified: true, receipt_number})
But there is no service for User built-in collection type. I need to change the user's role by a custom controller.