This is an extension of this question which is almost 2 years old. In that question, @Danni said it was intended for the API to not return the results of a partial bucket.
My question is how do I return the results of a partial bucket if I wanted to?
Case in point, I want ts.get to return 100:
127.0.0.1:6379> flushdb
OK
127.0.0.1:6379> ts.create src
OK
127.0.0.1:6379> ts.create dst
OK
127.0.0.1:6379> ts.createrule src dst aggregation first 3600000
OK
127.0.0.1:6379> ts.add src * 100
(integer) 1651515399055
127.0.0.1:6379> ts.add src * 200
(integer) 1651515402981
127.0.0.1:6379> ts.add src * 300
(integer) 1651515406787
127.0.0.1:6379> ts.add src * 400
(integer) 1651515410118
127.0.0.1:6379> ts.get dst
(empty array)