How do we write a JQL function which will fetch the issues based on issues opened\created one day before. Ouq requirement is when the function runs on Monday it should extract data for Friday , Sat, Sun. When the same query is executed on Tuesday it should only pull data for Monday .
You can achieve this with following query
(created > startOfDay(-1d) and created < startOfDay()) or (created >startOfDay(-3d) and created < startOfDay() and created < startOfWeek())
The first bracket contains all issues created the day before, the second is valid for all issues created in the last three days and before the week started. Note, depending where you are the week starts at different days (Some start with Monday some with Sunday). If Sunday is the first day use startofWeek(1d)
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
This is a duplicate of https://answers.atlassian.com/questions/38644
Hmm, well I'm not sure you can pull Friday, Saturday, Sunday automatically but the easiest way to grab issues based on created date is so:
createdDate >= -1d createdDate >= -72h
Or something of this nature.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Did you catch the news at Team ‘25? With Loom, Confluence, Atlassian Intelligence, & even Jira 👀, you won’t have to worry about taking meeting notes again… unless you want to. Join us to explore the beta & discover a new way to boost meeting productivity.
Register today!Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.