Where to put quotation mark?

Markus March 29, 2018

issueFunction not in subtasksOf("issuetype in (Story)")

works fine without any problems (it hides Sub Tasks of Stories). But i dont know how to write the same thing for User Stories because i allways get an error. 

 issueFunction not in subtasksOf("issuetype in (User Story)")

Error.

 issueFunction not in subtasksOf("issuetype in ("User Story")")

Error.

Where do i put the quotation marks?

2 answers

2 accepted

1 vote
Answer accepted
Thomas Schlegel
Community Leader
Community Leader
Community Leaders are connectors, ambassadors, and mentors. On the online community, they serve as thought leaders, product experts, and moderators.
March 29, 2018

Hi Markus,

use single quotes:

issueFunction not in subtasksOf("issuetype in ('User Story')")

Markus March 29, 2018

Perfekt, thanks again!

1 vote
Answer accepted
Udo Brand
Rising Star
Rising Star
Rising Stars are recognized for providing high-quality answers to other users. Rising Stars receive a certificate of achievement and are on the path to becoming Community Leaders.
March 29, 2018

Have you tried:

issueFunction not in subtasksOf("issuetype in ('User Story')")

Markus March 29, 2018

Great, thank you very much!

Suggest an answer

Log in or Sign up to answer