Knowledge Base Articles

JQL filter is not working anymore

Problem

After moving to Forge, the JQL filters are no longer working.

Solution

Some JQL filters will require updated syntax after transitioning to Forge. Existing saved filters that use the old syntax, such as links and bookmarks, will no longer work.

Old syntax

New syntax

issue.internal

issueInternal

Account = "name"

Account.name = "name"

The same applies to all operators except contains (~).

Note that the contains operator now works for Account.name. It searches all values for all properties/subfields.

"Tempo Team" = "name"

"Tempo Team.name" = "name"

The same applies to all operators except contains (~).

JQL filters using custom field IDs
(e.g., cf[10000] = "name")

Only the contains operator (~) is supported. For example, cf[10000] = "name" is not available.

Custom fields IDs do not support property fields. For example, cf[10000].name = "name" is unavailable.