Rick Spencer
Rick Spencer
Looking through the Python code, so far as I can tell, the value is sent to the database through an API through a REST API and the logic for reconstituting...
We should do this, but there is no reason we can't release an update after we GA with these improvement.
It's good to know that it is technically supported, but this does not feel like a design that was made for me as a developer, as you say. Note that...
Obviously since I logged this issue, I would like to see this feature implemented. Currently, the Flux team is 100% focused on Flux performance. We'll take a look at simplifying...
FYI, in dart the syntax for declaring positional versus named arguments is that position arguments go first, and then named arguments are enclosed in brackets. Flutter (a framework written in...
@gefaila thanks for the input. We have some rough ideas about how we can enable this in the future. Meanwhile, I know it is not quite what you are asking,...
Another clue is that adding ```group()``` results in an index out of range error: 
Minimal reproducer: Error is thrown when the tag is not present: ``` import "array" import "internal/debug" array.from(rows: [{_time: now(), label: "xxxx"}]) |> debug.opaque() |> range(start: now()) |> filter(fn: (r) =>...
Relevant diff where the error is thrown: https://github.com/influxdata/flux/commit/d4499069f4af5165b7f059fbcd76590fe15fb0ce
Another example from my own data: ``` from(bucket: "operating-results") |> range(start: 0) |> filter( fn: (r) => exists r.foo) //works when present, error when not present |> filter(fn: (r) =>...