Good day!
Try to make a search query in the filter by field "Component" (component is changed during ("2018/08/01 00:00", now())
But I get a History search do not support the Component error.
The same thing happens with other fields.(Deadline, initial assessment)
How can I extend my search by fields?
Thanks in advance!
Hi @Alexander,
welcome to this community.
JQL supports only Assignee, Fix Version, Priority, Reporter, Resolution, and Status fields for the changed-Operator (https://confluence.atlassian.com/jiracorecloud/advanced-searching-operators-reference-765593718.html#Advancedsearching-operatorsreference-CHANGEDCHANGED)
Maybe there is something in the marketplace, but I don't know such an add-on.
Thank you for your answer!
Refinement:
I need to view queries where someone has changed the "Components" field.
There are no possibilities?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you for your answer!
Refinement:
I need to view queries where someone has changed the "Components" field.
There are no possibilities?
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
With Smart QL - https://marketplace.atlassian.com/apps/1218767/smart-ql?hosting=server&tab=overview - you can scratch following queries
SELECT * FROM changes
WHERE fieldtype = 'jira'
AND field = 'Component'
LIMIT 10
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.