Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...


Search for tickets due at a specific date:

...

Code Block
issue in estimationDue('2020-08-01')

...

Will return all issues which are in estimation state `ESTIMATING` and will be due at `2020-08-01`.

Search for tickets due within a date range:

...

Code Block
issue in estimationDue('2020-08-01', '2020-08-07')

...

Will return all issues which are in estimation state `ESTIMATING` and will be due in the date range between `2020-08-01`, `2020-08-07`.

Search for tickets with a relative duration:

Code Block

...

issue in estimationDue('1w')

...

Will return all issues which are in estimation state `ESTIMATING` and will be due in one week from now.`issue

Code Block
issue in estimationDue('1w', '1w')

...

Will return all issues which are in estimation state `ESTIMATING` and are due in the range of the past seven and future seven days.

...