Hello,
I followed the solution on this post by @grantjenkins and did little tweaks to receive daily email notifications of Planner tasks in a specific bucket. I have setup a flow that filters tasks on a specific bucketId and emails me the TaskName, BucketName, AssignedUsers, and total of tasks in that bucket.
However, I found that tasks created more than 6 months ago were not included in the email. I tried adding multiple conditions in the filter action by using the bucketId and past_time with 12 months interval.

Here's one of the bucket within a Scope with multiple filter conditions;
@and(contains(item()?['bucketId'], '_______'),greaterOrEquals(formatDateTime(item()?['createdDateTime'], 'yyyy-MM'), outputs('Compose_past_time')))

Unfortunately, even after trying multiple filter conditions aside from the above, tasks created more than 6 months ago are not included in the final email. (Is this true on tasks created within 6 months)
Is this really the case? Are there any other solution to include all the tasks under a specific bucket despite the createdDateTime value.