QueryPropertyHistory Service Message :: Null
Hello!
I'm running a very simple QueryPropertyHistory Service to obtain the logged values that are defined on the very Thing on which the service is defined. So normally something like this should work?
// result: INFOTABLE dataShape: ""
var result = me.QueryPropertyHistory({
oldestFirst: undefined /* BOOLEAN */,
maxItems: undefined /* NUMBER */,
endDate: undefined /* DATETIME */,
query: undefined /* QUERY */,
startDate: undefined /* DATETIME */
});
I set up my service to run on Mashup load just to test it out and I get this error (in the console log):
Error executing service. Message ::null - See Script Error Log for more details
There are no additional details provided in the Error Log, it's actually completely blank. Does anyone know how to properly query all the properties present on the same Thing as the service it is being ran on?
Any help will be much appreciated. Cheers! 🙂

