Skip to end of banner
Go to start of banner

Attachment JQL functions Cloud

Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 3 Next »

🔎: available in Issue Navigator.

hasAttachment() 🔎

Search for issues that include any type of attachment.

Examples

issue in hasAttachment("query")

finds the issues that include any type of attachment.

hasAttachmentAfter() 🔎

Examples

issue in hasAttachmentAfter("query", "-6d")

finds the issues that added any attachments within dates from the number of days you specify to the present.

hasAttachmentBefore() 🔎

Examples

issue in hasAttachmentBefore("query", "-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("query", "username")

finds the issues that include any type of attachments that are added by a specific user.

attachmentCountEquals() 🔎

Search for issues according to the number of attachments.

Examples

issue in attachmentCountEquals("query", "2")

finds the issues with 2 attachments.

attachmentCountMoreThan() 🔎

Search for issues according to the number of attachments.

Examples

issue in attachmentCountMoreThan("query", "1")

finds the issues that have more than one attachment.

attachmentCountLessThan() 🔎

Search for issues according to the number of attachments.

Examples

issue in attachmentCountLessThan("query", "3")

finds the issues that have less than three attachments.

attachedDate() 🔎

Search for issues according to the date added attachments.

Examples

issue in attachedDate("query", "2023-05-10")

finds the issues that are attached on a specific date.

  • No labels