Overview
This functionality allows users to filter Jira issues based on the filenames also you can filter issues whether they have attachments or not.
Users can search for issues that:
Have attachments (NOT EMPTY/NOT NULL)
Do not have attachments (EMPTY/NULLBy filename
That do not have attachments (i.e., attachments field is empty or null)
That have attachments (i.e., attachments field is not empty or not null)
Usage
first you should go to issues->Custom fields->your attach file custom field->Edit details->Search Template-> choose Text searcher then save or update.
Navigate to the Issue Navigator in Jira.
Open the Advanced Search (JQL Mode).
The following JQL queries can be used:
“customFieldName” ~ “filename“
“customFieldName” IS NOT EMPTY
...