content/flux/v0/stdlib/experimental/date/boundaries/sunday.md
boundaries.sunday() returns a record with start and stop boundary timestamps for last Sunday.
Last Sunday is relative to now(). If today is Sunday, the function returns boundaries for the previous Sunday.
() => {stop: time, start: time}
{{% caption %}} For more information, see Function type signatures. {{% /caption %}}
import "experimental/date/boundaries"
option location = timezone.fixed(offset: -8h)
option now = () => 2021-12-30T00:40:44Z
boundaries.sunday()// Returns {start: 2021-12-26T08:00:00Z, stop:2021-12-27T08:00:00Z }
import "experimental/date/boundaries"
day = boundaries.sunday()
from(bucket: "example-bucket")
|> range(start: day.start, stop: day.stop)