Attachment JQL functions DC
- 1 hasAttachment()
- 2 hasAttachmentAfter()
- 3 hasAttachmentsBefore()
- 4 hasAttachmentBy()
- 5 hasAttachmenMatching()
- 6 attachmentCountEquals()
- 7 attachmentCountMoreThan()
- 8 attachmentCountLessThan()
- 9 attachedDate()
- 10 hasAttachmentByMe()
- 11 hasAttachmentByMeAfter()
- 12 hasAttachmentByMeBefore()
- 13 hasAttachmentByUser()
- 14 hasAttachmentByUserAfter()
- 15 hasAttachmentByUserBefore()
hasAttachment()
Search for issues that include any type of attachment.
Examples
issue in hasAttachment()
finds the issues that include any type of attachment.
hasAttachmentAfter()
Examples
issue in hasAttachmentAfter("-6d")
finds the issues that added any attachments within dates from the number of days you specify to the present.
hasAttachmentsBefore()
Examples
issue in hasAttachmentBefore("-3w")
finds the issues that added any attachments before the given day.
hasAttachmentBy()
Search for issues that include any type of attachments that are added by a particular user.
Examples
issue in hasAttachmentBy("username")
finds the issues that include any type of attachments that are added by a specific user.
hasAttachmenMatching()
Search for issues that include attachments by their filenames or extension.
Examples
issue in hasAttachmentMatching("avc")
finds the issues that include attachments named “avc“
issue in hasAttachmentMatching("*avc*")
finds the issues that include attachments whose names include “avc”.
issue in hasAttachmentMatching("*avc*2022*")
finds the issues that include attachments whose names include both “avc” and “2022“ respectively.
issue in hasAttachmentMatching("*.png")
finds the issues that end with “.png”.
issue in hasAttachmentMatching("avc*")
finds the issues that start with “avc”.
attachmentCountEquals()
Search for issues according to the number of attachments.
Examples
issue in attachmentCountEquals("Sub-JQL", "2")
finds the issues with 2 attachments.
attachmentCountMoreThan()
Search for issues according to the number of attachments.
Examples
issue in attachmentCountMoreThan("Sub-JQL", "1")
finds the issues that have more than one attachment.
attachmentCountLessThan()
Search for issues according to the number of attachments.
Examples
issue in attachmentCountLessThan("Sub-JQL", "3")
finds the issues that have less than three attachments.
attachedDate()
Search for issues according to the date added attachments.
Examples
issue in attachedDate("2023-05-10")
finds the issues that are attached on a specific date.
hasAttachmentByMe()
Search for issues attached by current user.
Examples
issue in hasAttachmentByMe()
hasAttachmentByMeAfter()
Examples
issue in hasAttachmentByMeAfter("-6d")
finds the issues that added any attachments within dates from the number of days you specify to the present by the current user.
hasAttachmentByMeBefore()
Examples
issue in hasAttachmentByMeBefore("-3w")
finds the issues that added any attachments before the given day by the current user.
hasAttachmentByUser()
Search for issues attached by the user.
Examples
issue in hasAttachmentByUser("username" )
hasAttachmentByUserAfter()
Examples
issue in hasAttachmentByUserAfter("username", "-6d")
finds the issues that added any attachments within dates from the number of days you specify to the present by the user.
hasAttachmentByUserBefore()
Examples
issue in hasAttachmentByUserBefore("username", "-3w")
finds the issues that added any attachments before the given day by the user.