Skip to content
This repository was archived by the owner on Jun 14, 2026. It is now read-only.

Timescale logic is wrong for filtering everywhere #848

@pliablepixels

Description

@pliablepixels

Given a start and end date, I was using:
/StartTime >=start and /EndTime<=end. This only takes care of events that start and end within that interval and does not take care of overlapping events, which clearly, should also be counted.

i.e:


                  t1================================t2
                          e1|-------------|              // works
         e2|-------------------------|          // error - not selected
                                        e3|-----------------------| // error - not selected


Change logic to:
/StartTime <= end and /EndTime >=start

smh

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions