influxdb-client-swift icon indicating copy to clipboard operation
influxdb-client-swift copied to clipboard

InfluxDB (v2+) Client Library for Swift

Results 4 influxdb-client-swift issues
Sort by recently updated
recently updated
newest added

Closes #63 Closes #65 ## Proposed Changes - Replace classes with structs and lazy vars with computed vars ## Checklist - [x] CHANGELOG.md updated - [x] Rebased/mergeable - [x] A...

InfluxDBClient.PointSettings.init() is internal and can not be accessed outside of the library

I looked at the code and noticed strong reference cycles: ```swift /// Lazy initialized `QueryAPI`. public lazy var queryAPI: QueryAPI = { QueryAPI(client: self) }() /// Lazy initialized `DeleteAPI`. public...

It would be great if you could add an example on how to access time stamp and values most effectively. I came up with the following setup ``` var dataPoints...