Versions Compared

Key

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


On this page:

...

If we want to find the issues where work had been logged by a specified user. We can do this by using silJQLExpression:

...

Also, we can use this JQL to find the issues where work had been logged on a given date:

Code Block
titleJQL
key in silJQLExpression('size(getWorklogIds("2017-03-16", key)) != 0', 'project = TEST')

...

Code Block
titleJQL
key in silJQLExpression('size(linkedIssues(key, "Relates")) != 0', 'project = TEST')

Find issues with subtasks

In order to achieve that we need to write this simple JQL:

Code Block
titleJQL
key in silJQLExpression('size(subtasks(key)) != 0', 'project = TEST')

...