Stitch: Can't make custom user data to appear in userObject.customData

here is what I did to retrieve the custom data :slight_smile:
1- create a function in stitch functions.
Capture du 2020-06-01 13-12-44

the function you create looks like this:
exports = function(arg){

return context.user.custom_data;
};

2- you give it a name example: myFunction

3.you call the function inside your code like so:
const client = Stitch.defaultAppClient;
client.callFunction(‘myFunction’).then(result=>result).catch(err=>err)

I hope this answers your questions, good luck :four_leaf_clover: :slight_smile: