hasAttachments() 🔎
Search for issues that include any type of attachment.
Examples
issue in hasAttachment("query")
finds the issues that include any type of attachment.
hasAttachmentsAfter() 🔎
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.
hasAttachmentsBefore() 🔎
Examples
issue in hasAttachmentBefore("query", "-3w")
finds the issues that added any attachments before the given day.
hasAttachmentsBy() 🔎
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.
attachmentsCountEquals() 🔎
Search for issues according to the number of attachments.
Examples
issue in attachmentCountEquals("query", "2")
finds the issues with 2 attachments.
attachmentsCountMoreThan() 🔎
Search for issues according to the number of attachments.
Examples
issue in attachmentCountMoreThan("query", "1")
finds the issues that have more than one attachment.
attachmentsCountLessThan() 🔎
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.