Versions Compared

Key

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

Table of Contents

Here you can find some most popular search examples. Just copy and paste with some modifications into the textarea: 

Image Modified

Find by Comment Author

...

The query below finds all issues that are linked as "Blocks", are neither "Closed" nor "Resolved" and which are being linked by issues from the "MORPH" project

Code Block
languagejs
{
  "issue.fields.issuelinks": {
    "$elemMatch": {
      "type.name": "Blocks",
      "inwardIssue.key": {"$regex": "MORPH-"},
      "inwardIssue.fields.status.name": {
        "$nin": [
          "Closed",
          "Resolved"
        ]
      }
    }
  }
}

...