Skip to content

Remove `paginated_tree_graphql_query` feature flag

What does this MR do and why?

Contributes to #337214 (closed)

We switched from old graphql endpoint to the new one that supports pagination. This MR removes feature flag responsible for that.

Screenshots or screen recordings

These are strongly recommended to assist reviewers and reduce the time to merge your change.

How to set up and validate locally

  1. GraphQL explorer

http://localhost:3000/-/graphql-explorer

{
  project(fullPath: "root/my-awesome-project") {
    repository {
      paginatedTree {
        nodes {
          blobs {
            nodes {
              name
            }
          }
        }
      }
    }
  }
}
  1. Open repository tree http://localhost:3000/root/my-awesome-project

It should load the list of files and directories without any errors

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 Vasilii Iakliushin

Merge request reports