Help me write a query to show ALL issues except feature that has link type 'is blocked by' or blocks
Hi
you can try this JQL
project = (name) AND issueLinkType != "is blocked by" AND issueLinkType != blocks
Thank you.
Hi @Spruha Shah ~ this should do it:
NOT (issuetype = Story and (issueFunction in hasLinks("blocks") or issueFunction in hasLinks("is blocked by")))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi @Laurie Sciutti This gives me issues with all link types.
I only want to see issues excluding features that are either 'blocked by' or 'blocks' features
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.