Skip to content

Expose group member roles through graphQL

Jarka Košanová requested to merge 426524-graphql-group-member-roles into master

What does this MR do and why?

Screenshots or screen recordings

Screenshots are required for UI changes, and strongly recommended for all other merge requests.

Before After

How to set up and validate locally

Run following queries in graphql explorer (https://gdk.test:3443/-/graphql-explorer)

query {
  project(fullPath: "flightjs/flight") {
    id
    name
    memberRoles {
      nodes {
        id
        name
      }
    }
  }
}
query {
  group(fullPath: "flightjs") {
    id
    name
    memberRoles {
      nodes {
        id
        name
      }
    }
  }
}

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 #426524 (closed)

Edited by Vitali Tatarintev

Merge request reports