J tricks - Little JIRA Tricks
  • Home
  • Plugins ↓
    • JQL Tricks Plugin
      • JQL Tricks Plugin - Cloud
        • JQLT Cloud Installation
        • JQLT Cloud Configuration
        • JQLT Cloud Usage
        • JQLT Cloud License
        • JQLT Cloud FAQ
      • JQL Tricks Plugin - DC
        • JQLT DC Installation
        • JQLT DC Configuration
        • JQLT DC Usage
          • JQLT Issue Functions
          • JQLT Subtask Functions
          • JQLT Links Functions
          • JQLT Development Functions
          • JQLT Worklog Functions
          • JQLT Project Functions
          • JQLT Component Functions
          • JQLT Version Functions
          • JQLT Group Functions
          • JQLT User Functions
          • JQLT Date Functions
        • JQLT DC License
        • JQLT DC FAQ
        • JQLT DC Known Issues
        • JQLT DC Performance
      • JQL Tricks Cloud Migration
    • Simplified Planner
      • J-Planner Installation
      • J-Planner Configuration
      • J-Planner Usage
        • Creating a plan
        • Editing a plan
        • Deleting a plan
        • Viewing a plan
        • Modifying a plan
      • J-Planner FAQ
    • Atla-Search Plugin
      • Atla-Search Installation
      • Atla-Search Configuration
      • Atla-Search Usage
      • Atla-Search License
      • Atla-Search FAQ
    • Heroku for Compass App
      • Heroku for Compass Installation
      • Heroku for Compass Configuration
      • Heroku for Compass Usage
    • Datadog for Compass App
      • Datadog for Compass Installation
      • Datadog for Compass Configuration
      • Datadog for Compass Usage
    • Copy to subtask Plugin
    • All Plugins
  • Tutorials
  • The Book
  • Contact Us
  • Home
  • Plugins ↓
    • JQL Tricks Plugin
      • JQL Tricks Plugin - Cloud
        • JQLT Cloud Installation
        • JQLT Cloud Configuration
        • JQLT Cloud Usage
        • JQLT Cloud License
        • JQLT Cloud FAQ
      • JQL Tricks Plugin - DC
        • JQLT DC Installation
        • JQLT DC Configuration
        • JQLT DC Usage
          • JQLT Issue Functions
          • JQLT Subtask Functions
          • JQLT Links Functions
          • JQLT Development Functions
          • JQLT Worklog Functions
          • JQLT Project Functions
          • JQLT Component Functions
          • JQLT Version Functions
          • JQLT Group Functions
          • JQLT User Functions
          • JQLT Date Functions
        • JQLT DC License
        • JQLT DC FAQ
        • JQLT DC Known Issues
        • JQLT DC Performance
      • JQL Tricks Cloud Migration
    • Simplified Planner
      • J-Planner Installation
      • J-Planner Configuration
      • J-Planner Usage
        • Creating a plan
        • Editing a plan
        • Deleting a plan
        • Viewing a plan
        • Modifying a plan
      • J-Planner FAQ
    • Atla-Search Plugin
      • Atla-Search Installation
      • Atla-Search Configuration
      • Atla-Search Usage
      • Atla-Search License
      • Atla-Search FAQ
    • Heroku for Compass App
      • Heroku for Compass Installation
      • Heroku for Compass Configuration
      • Heroku for Compass Usage
    • Datadog for Compass App
      • Datadog for Compass Installation
      • Datadog for Compass Configuration
      • Datadog for Compass Usage
    • Copy to subtask Plugin
    • All Plugins
  • Tutorials
  • The Book
  • Contact Us

JQL Tricks DC - Development Functions

Return Type: ISSUE

These functions are a wrapper on the existing JIRA functionality and intends to make it easier for users to search based on commits, reviews, pull requests etc. As JIRA exposes more data on the development attributes, we will add more such functions.

All the developer functions require "JIRA Software" license. Also, JIRA should be connected to other development applications like Bitbucket Server, Crucible and Bamboo for the respective functions to work. See documentation for more details.

hasCommits
hasReviews
hasOpenReviews
hasPRs
hasOpenPRs
hasFailingBuilds
hasCommits
hasCommits([Count],[Operator])

Function to find all issues that has commits associated with it. You can optionally pass a count to find issues with exactly the given number of commits or pass a count and an operator to find issues with commits less than/more than the given number.


Supported Operators : "<", "<=", "=", "!=", ">", ">="

Since : v7.0

Usage/Examples:
  • issue in hasCommits() - Returns all the issues that has commits associated with them
  • issue in hasCommits(5) - Returns all the issues that has exactly 5 commits associated with them
  • issue in hasCommits(5, ">") - Returns all the issues that has more than 5 commits associated with them
hasReviews
hasReviews([Count],[Operator])

Function to find all issues that has reviews associated with it. You can optionally pass a count to find issues with exactly the given number of reviews or pass a count and an operator to find issues with reviews less than/more than the given number.


Supported Operators : "<", "<=", "=", "!=", ">", ">="

Since : v7.0

Usage/Examples:
  • issue in hasReviews() - Returns all the issues that has reviews associated with them
  • issue in hasReviews(5) - Returns all the issues that has exactly 5 reviews associated with them
  • issue in hasReviews(5, ">") - Returns all the issues that has more than 5 reviews associated with them
hasOpenReviews
hasOpenReviews([Count],[Operator])

Function to find all issues that has open reviews associated with it. You can optionally pass a count to find issues with exactly the given number of open reviews or pass a count and an operator to find issues with open reviews less than/more than the given number.


Supported Operators : "<", "<=", "=", "!=", ">", ">="

Since : v7.0

Usage/Examples:
  • issue in hasOpenReviews() - Returns all the issues that has open reviews associated with them
  • issue in hasOpenReviews(5) - Returns all the issues that has exactly 5 open reviews associated with them
  • issue in hasOpenReviews(5, ">") - Returns all the issues that has more than 5 open reviews associated with them
hasPRs
hasPRs([Count],[Operator])

Function to find all issues that has pull requests associated with it. You can optionally pass a count to find issues with exactly the given number of pull requests or pass a count and an operator to find issues with pull requests less than/more than the given number.


Supported Operators : "<", "<=", "=", "!=", ">", ">="

Since : v7.0

Usage/Examples:
  • issue in hasPRs() - Returns all the issues that has pull requests associated with them
  • issue in hasPRs(5) - Returns all the issues that has exactly 5 pull requests associated with them
  • issue in hasPRs(5, ">") - Returns all the issues that has more than 5 pull requests associated with them
hasOpenPRs
hasOpenPRs([Count],[Operator])

Function to find all issues that has open pull requests associated with it. You can optionally pass a count to find issues with exactly the given number of open pull requests or pass a count and an operator to find issues with open pull requests less than/more than the given number.


Supported Operators : "<", "<=", "=", "!=", ">", ">="

Since : v7.0

Usage/Examples:
  • issue in hasOpenPRs() - Returns all the issues that has open pull requests associated with them
  • issue in hasOpenPRs(5) - Returns all the issues that has exactly 5 open pull requests associated with them
  • issue in hasOpenPRs(5, ">") - Returns all the issues that has more than 5 open pull requests associated with them
hasFailingBuilds
hasFailingBuilds([Count],[Operator])

Function to find all issues that has failing builds associated with it. You can optionally pass a count to find issues with exactly the given number of failing builds or pass a count and an operator to find issues with failing builds less than/more than the given number.


Supported Operators : "<", "<=", "=", "!=", ">", ">="

Since : v7.0

Usage/Examples:
  • issue in hasFailingBuilds() - Returns all the issues that has failing builds associated with them
  • issue in hasFailingBuilds(5) - Returns all the issues that has exactly 5 failing builds associated with them
  • issue in hasFailingBuilds(5, ">") - Returns all the issues that has more than 5 failing builds associated with them

SUPPORT
APPS
TUTORIALS
THE BOOK
© J-Tricks