Retrieve all properties from a thing
Hello,
I have the following challenge: I want to extract all properties, which are available/present on a certain thing, to an info table. I used the following code to achieve this:
var result = Things[ThingName].GetPropertyDefinitions({
category: undefined /* STRING */,
type: undefined /* BASETYPENAME */,
dataShape: undefined /* DATASHAPENAME */
});
My problem is, that it gets me only 999 entries but my thing has more that 999 properties.
Is there a way to get more/all entries? maxItems did not work.

