InfluxCommunity / influxdb3-go

The go package that provides a simple and convenient way to interact with InfluxDB 3.
https://pkg.go.dev/github.com/InfluxCommunity/influxdb3-go
MIT License
21 stars 11 forks source link

Simple Addvalue types #44

Closed arukiidou closed 8 months ago

arukiidou commented 9 months ago

Use Case

Expected behavior

I can easily add strings, integers, and floats. example

func (m *Point) AddStringField(k string, v string) *Point {
    m.AddField(k, v)
    return m
}

Actual behavior

It is not here.

Additional info