I assume you are talking about Azure AD B2C. If that's the case, this functionality simply does not exist in Azure AD B2C.
For your application to be able to call the graph API on behalf of the user, it needs to have delegated permissions to the graph API. If you check the App Registration > API Permissions blade in Azure AD B2C, you'll see that you are unable to delegate any other scopes other than "offlice_access" and "open_id".
In order for your app to call the graph API, you'll need to use Application Permissions instead, where your app will manually authenticate to Graph with its own identity, and perform the request API operations not on behalf of the logged in user. Such example can be found manage-b2c-users-dotnet-core-ms-graph