0

Is there a way to search (in the Jira Advanced Search, not in fisheye or crucible search) for Jira tickets for which:

  • a Crucible review exists
  • the review is not in state "closed"
shallowThought
  • 19,212
  • 9
  • 65
  • 112

1 Answers1

0

project = "xx" AND type = xx AND status = done AND (issue.property[development].prs > 0 OR issue.property[development].commits > 0) AND issue.property[development].openreviews > 0

Nina
  • 1