Skip to content

Add projects for Organization resolver

Doug Stull requested to merge 423327-add-frequently-used-projects into master

What does this MR do and why?

Add projects for Organization display

Screenshots or screen recordings

Screenshot_2023-12-15_at_10.37.49_AM

How to set up and validate locally

  1. go to http://gdk.test:3000/-/graphql-explorer
  2. input the below:
{
  organization(id: "gid://gitlab/Organizations::Organization/1") {
    projects(first: 5, after: null) {
      nodes {
        id
        name
      }
      pageInfo {
        startCursor
        endCursor
        hasNextPage
        hasPreviousPage
      }
    }
  }
}

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

Edited by Doug Stull

Merge request reports