Things is not defined.
In an Expressions function: ExistentPTO in a Mashup X,
I have a need to evaluate the payload on a call to a route (from another project: ToolB).
response = Things["ToolB.v6DocMgmt"].getDocuments({
...
...
});
if (JSON.stringify(response)[value] == []) {
output = "Not a good number";
} else output = <target mashup name>;
When viewing the mashup, i get this in the logs:
19:06:28 WARN - Evaluation of expression "ExistentPTO" Failed. Things is not defined
Can I NOT use Things within an Expression function? How do i refer to a Thing in another project?

