JQL stands for Jira Query Language and is the most powerful and flexible way to search Jira issues. JQL is also what Jira Snapshots are using to fetch data from Jira.
...
Code Block |
---|
parent in ($key) |
Issues Created This Week
JQL supports relative time. Like this:
Code Block |
---|
created >= startOfWeek() |
Anchor | ||||
---|---|---|---|---|
|
...
Code Block |
---|
worklogDate >= startOfWeek() and worklogAuthor = 557057:c0f3ae55-……. |
Where 557057:c0f3ae55-……. is a placeholder for the complete userid.
...