Describes a list of raw data information with additional functions to access certain entries. You can iterate over the collection like the following:
const rawDataCollection = piweb.data.getRawDataCollection(); for (let rawDataItem of rawDataCollection) { ... }
Gets the total number of items in this collection.
Returns the raw data items that are associated to the specified entity.
An instance of a raw data entity.
Returns the items that match one or more of the specified filter strings.
One or more filter strings. Wildcards like '*' are allowed.
Returns an iter over all raw data items.
Generated using TypeDoc
Describes a list of raw data information with additional functions to access certain entries. You can iterate over the collection like the following:
const rawDataCollection = piweb.data.getRawDataCollection(); for (let rawDataItem of rawDataCollection) { ... }