Reputation: 167
I am using JIRA rest api for jql search. It says we can filter out fields using fields
parameter. Is there a way we can filter out properties from a particular field. eg. field assignee
has many properties. But I am interested only in property displayName
. Is there a way we can filter out all other properties?
Upvotes: 1
Views: 917
Reputation: 918
Is there a way we can filter out all other properties?
There is no way to hide other properties of assignee.
Upvotes: 2
Reputation: 6349
JQL will search all properties inside the assignee field to check if something is matching. So it should work out-of-the-box, for example assignee = "John Smith"
, in this case John Smith is the display name.
Upvotes: 0