Search code examples
jirajql

Jira Summary contains text filter


I need to filter issues whose title (Summary attribute?) contains a text "config". So what I did is:

  1. More->Summary
  2. Enter the text "config"

But for some reason I only got issues whose title contains "config" or "configs". I didn't get the issues whose title contains e.g. "configuration". What's wrong?


Solution

  • Try this JQL for your filter:

    summary ~ "config*"
    

    The wildcard should help pick up config as well as extensions like configuration and configs.