Skip to content

Resolve "Allow filtering of issues by reaction emoji in GraphQL"

What does this MR do?

  • Adds the ability to filter issues by the names/wildcards (ANY or NONE) of reaction emojis awarded by current user in GraphQL. Resolves #327342 (closed).

Sample query 1:

{
  project(fullPath: "gitlab-org/gitlab-shell") {
    issues(myReactionEmoji: "any") {
      nodes {
        id
        title
      }
    }
  }
}

Sample query 2:

{
  group(fullPath: "gitlab-org") {
    issues(myReactionEmoji: "expressionless") {
      nodes {
        id
        title
      }
    }
  }
}

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

Does this MR contain changes to processing or storing of credentials or tokens, authorization and authentication methods or other items described in the security review guidelines? If not, then delete this Security section.

  • Label as security and @ mention @gitlab-com/gl-security/appsec
  • The MR includes necessary changes to maintain consistency between UI, API, email, or other methods
  • Security reports checked/validated by a reviewer from the AppSec team
Edited by euko

Merge request reports

Loading