Cyril
Cyril

Reputation: 167

Excluding properies for JIRA JQL search using REST API

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

Answers (2)

Volodymyr Krupach
Volodymyr Krupach

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

Laurent Jalbert Simard
Laurent Jalbert Simard

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

Related Questions