I have a really annoyng issue that im sure I’m just missing something simple. I have a workflow with some custom code, I’m trying to retrun a value into an output field but uts just not showig but it successsfully shows in the logs.
Here is an an example:
exports.main = async (event) => {
const testValue = “Static Test Value”;
const output = {
outputFields: {
iname: testValue
}
};
console.log(“Returning Output:”, JSON.stringify(output));
return output;
};
