Skip to content

Allow BoardListType.issues to filter by negated issueType in GraphQL

Mario Celi requested to merge 328240-add-negated-issue-type-filter into master

What does this MR do and why?

BoardListType.issues filter would allow a negated issueType input argument, but if provided, it would have no effect on the IssueFinder.

Database plans

For negated issue_type filtering

https://console.postgres.ai/shared/ebf9b43c-69b1-46cb-9c6e-9c67cdee738f

RAW SQL

SELECT "issues".*
FROM   "issues"
WHERE  "issues"."id" IN (SELECT "issues"."id"
                         FROM   "issues"
                                LEFT JOIN banned_users
                                       ON banned_users.user_id =
                                          issues.author_id
                         WHERE  banned_users.user_id IS NULL)
       AND "issues"."project_id" = 278964
       AND ( "issues"."state_id" IN ( 1 ) )
       AND "issues"."issue_type" != 0 

Screenshots or screen recordings

These are strongly recommended to assist reviewers and reduce the time to merge your change.

How to set up and validate locally

Numbered steps to set up and validate the change are strongly suggested.

MR acceptance checklist

This checklist encourages us to confirm any changes have been analyzed to reduce risks in quality, performance, reliability, security, and maintainability.

Related to #328240 (closed) and #337662 (closed)

Edited by Mario Celi

Merge request reports