Versions Compared

Key

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

Table of Contents

...

🔎: available in Issue Navigator.

hasAttachment() 🔎

Search for issues that include any type of attachment.

...

finds the issues that include any type of attachment.

...

hasAttachmentAfter() 🔎

Examples

Tip

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

Tip

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.

...

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.

...

finds the issues with 2 attachments.

...

attachmentCountMoreThan() 🔎

Search for issues according to the number of attachments.

...

finds the issues that have more than one attachment.

...

attachmentCountLessThan() 🔎

Search for issues according to the number of attachments.

...

finds the issues that are attached on a specific date.

hasAttachmentByMe()

Search for issues attached by current user.

Examples

Tip

issue in hasAttachmentByMe("query")

hasAttachmentByMeAfter()

Examples

Tip

issue in hasAttachmentByMeAfter("query", "-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

Tip

issue in hasAttachmentByMeBefore("query", "-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

Tip

issue in hasAttachmentByUser("query", "Full Name" )

hasAttachmentByUserAfter() 🔎

Examples

Tip

issue in hasAttachmentByUserAfter("query", "Full Name", "-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

Tip

issue in hasAttachmentByUserBefore("query", "Full Name", "-3w")

finds the issues that added any attachments before the given day by the user.

hasAttachmenMatching() 🔎

Search for issues that include attachments by their filenames or extensions.

Examples

Tip

issue in hasAttachmentMatching("query", "avc")

finds the issues that include attachments named “avc“

Tip

issue in hasAttachmentMatching("query", "*avc*")

finds the issues that include attachments whose names include “avc”.

Tip

issue in hasAttachmentMatching("query", "*avc*2022*")

finds the issues that include attachments whose names include both “avc” and “2022“ respectively.

Tip

issue in hasAttachmentMatching("query", "*.png")

finds the issues that end with “.png”.

Tip

issue in hasAttachmentMatching("query", "avc*")

finds the issues that start with “avc”.