Skip to content

Expose board epic user preferences

Jan Provaznik requested to merge swimlanes_collapse_api into master

What does this MR do?

Allows listing user preferences for a group epic swimlane in GraphQL.

Query sample:

query {
  group(fullPath: "h5bp") {
    boards(first: 20) {
      nodes {
        id
        epics {
          nodes {
            id
            title
            userPreferences {
              collapsed
            }
          }
    	}
      }
    }
  }
}

Related to #225667 (closed)

A mutation to set collapsed status will be a separate MR.

Screenshots

Does this MR meet the acceptance criteria?

Conformity

Availability and Testing

Security

If this MR contains changes to processing or storing of credentials or tokens, authorization and authentication methods and other items described in the security review guidelines:

  • 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 Jan Provaznik

Merge request reports