Code Node does not run current code, returns old code output

Hi Everyone, this code node in my workflow is completely broken. No matter what code I place in this node it returns the same results. As you can see, I place a simple debug message in the node, among other solutions. Deleting the node, updating the instance, restarting the instance, nothing can get this node to work. Any help would be appreciated thanks.

Code those what you coded it to do.
In Chrome console, it would log a message, CODE NODE IS WORKING.
While it returns everything from previous input: return $input.all()
In the output section of Code node, you see details , what you are returning inside the code(what goes after return)

In your code node you do return $input.all();
which represents previous input and you are returning it as it is.
you need to do some thing with data and return new data.
you can refer to this community topic to better understand code node.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.