caseneuve / dzira

Interact with jira worklogs using API
MIT License
3 stars 1 forks source link

Add list of backlog issues sorted by some parameter #25

Open filiplajszczak opened 8 months ago

filiplajszczak commented 8 months ago

list top n issues in the backlog when top is decided either by backog order or a field on the issue.

caseneuve commented 8 months ago

We can find backlog issues with JQL like project = 'KEY' AND sprint is empty, then get first issue with expand="names" option, find custom field matching user provided name, and filter all found issues by values of this field.

We have 2 options:

caseneuve commented 7 months ago

See #30