Versions Compared

Key

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

The instructions examples on this page describe how to execute build a JQL search using JQL Search Extensions.

On this page:

Table of Contents
minLevel1
maxLevel7
excludeTry it free

Attachments JQL keywords

AttachmentContent

Search for issues that have with attachments with containing the provided phrase. The search functionality will find the provided phrase in PDF, Word (doc, docx), PowerPoint (ppt, pptx), Excel (xls and xslx), OpenOffice, and PlainText.

...

Find issues with attachments containing the phrase "specification"

Code Block
attachmentContent ~ "specification"

...

Code Block
attachmentsCount > 0 

...

AttachedByUser

Search for issues with attachments added by a particular user. 

...

Code Block
attachedByUser = "Jane Potter"

...

AttachedOnDate

Search for issues with attachments added on a particular date. This JQL keyword works with date-related JQL functions:

...

Code Block
attachedOnDate >= "2016/03/14" and attachedOnDate < "2016/03/15" 
attachedOnDate < now()

...

AttachmentExtension 

Search for issues with attachments with a particular extension. 

...

Code Block
attachmentExtension = "png" OR attachmentExtension = "jpg"

...

AttachmentName

Search for issues with attachments with a particular name. 

...