Hi,
I have a transform function that adds fields to a model that I do not want saving to the database.
function calculateFunction(model) { var transform = model.toJSON(); var input = model.get('input'); transform.input = input; transform.output = some_function(input); return transform; }How can I access the
output
data, as it isn't actually saved in the model.