You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Dec 4, 2023. It is now read-only.
The function Field(name string, value float64) in the builders take a value as a float64. This makes the function not support strings, boolean and JSON. However, when building the command, the float64 is converts to a string using floatString(val float64) string. Should it then just take a string as a value like so Field(name string, value string) thus allowing for support of the missing types?
The function
Field(name string, value float64)in the builders take a value as afloat64. This makes the function not support strings, boolean and JSON. However, when building the command, thefloat64is converts to a string usingfloatString(val float64) string. Should it then just take a string as a value like soField(name string, value string)thus allowing for support of the missing types?