Skip to content

Allow to filter work items by author on GraphQL

Felipe Cardozo requested to merge fa-allow_to_filter_work_items_by_author into master

What does this MR do and why?

Allow filtering work items by author username on Graphql.

The field authorUsername is marked as alpha for now until we are 100% sure that we are not going to turn AUTHOR into a widget, more information
at #339777 (comment 1252683756).

Related to #382265

How to set up and validate locally

Create an issue using the UI and execute the GraphQL query from below:

query filteredWorkItems {
  project(fullPath: "PROJECT_FULL_PATH") {
    workItems(authorUsername: "ISSUE_AUTHOR_USERNAME") {
      nodes {
        title
        webUrl
      }
    }
  }
}

MR acceptance checklist

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

Edited by Felipe Cardozo

Merge request reports

Loading