...
since the Quantum::Estimator functions will allways always return a list of issue filtered based on your query.
Provided functions
estimationCreator()
The estimationCreator() function will return all issues with a specific creator.
...
Code Block |
---|
issue in estimationCreator(admin, smith) |
estimationDue()
The estimationDue() function will return issue matching specific criterias criteria regarding its due date. The estimaationDue() function expects, zero, one or two arguments.
Search for tickets due today:
`issue in estimationDue()` returns Searching all issues which are in estimation state `ESTIMATING`
Status | ||||
---|---|---|---|---|
|
Code Block |
---|
issue in estimationDue() |
The `estimationDue()` functions accepts a duration string, following the standard Jira duration format as as used in the time tracking field. Here are some examples:
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`
Status | ||||
---|---|---|---|---|
|
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`
Status | ||||
---|---|---|---|---|
|
Search for tickets with a relative duration:
Code Block |
---|
...
issue in estimationDue('1w') |
...
Will return all issues which are in estimation state `ESTIMATING`
Status | ||||
---|---|---|---|---|
|
Code Block |
---|
issue in estimationDue('1w', '1w') |
...
Will return all issues which are in estimation state `ESTIMATING`
Status | ||||
---|---|---|---|---|
|
...
The function accepts dates in the format: `YYYYYYYY-MM-DD`DD.
Relative format pattern:
The function accepts relative times in the format: `1d``1d`, `2d`, `5w`, etc.
estimationState()
The estimationState() function returns all issues that are matching an estimation state.:
Code Block |
---|
issue in estimationState() |
estimatedByUser()
The estimatedByUser() function will return all issues with estimation tasks that where estimated by a user.:
Code Block |
---|
issue in estimatedByUser() |
estimatesMissing()
The estimatesMissing() function will return all issues which are in estimation state `ESTIMATING`
Status | ||||
---|---|---|---|---|
|
Code Block |
---|
issue in estimatesMissing() |
estimatesMissingForUser()
The estimatesMissingForUser() function will return all issues whith with estimation tasks that where the user is allowed to estimate and has not yet estimated.:
Code Block |
---|
issue in estimatesMissingForUser() |