We have summary field and it's details is below.
{
"id": "summary",
"key": "summary",
"name": "Summary",
"custom": false,
"orderable": true,
"navigable": true,
"searchable": true,
"clauseNames": [
"summary"
],
"schema": {
"type": "string",
"system": "summary"
}
},
I need to filter the summary field values using REST API JQL query .
The query is " Project = GHJ and summary IN("title1" , "title2")". But it is throwing the error.
{
"errorMessages": [
"The operator 'in' is not supported by the 'summary' field."
],
"warningMessages": []
}
rest api : /rest/api/3/search
Hi @jay
Summary field support only ~ and ! ~ operators.
You can use summary ~ text1 OR summary ~ text2
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
If it resolved your issue, please accept the answer to mark it as resolved.
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.