content/flux/v0/stdlib/date/boundaries/yesterday.md
boundaries.yesterday() returns a record with start and stop boundary timestamps for yesterday.
Yesterday is relative to now().
() => {stop: time, start: time}
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
import "date/boundaries"
option now = () => 2022-01-02T13:45:28Z
boundaries.yesterday(
)// Returns {start: 2022-01-01T00:00:00.000000000Z, stop: 2022-01-02T00:00:00.000000000Z}
import "date/boundaries"
day = boundaries.yesterday()
from(bucket: "example-bucket")
|> range(start: day.start, stop: day.stop)