Skip to content

Expose humanTimeEstimate and humanTotalTimeSpent via graphql

What does this MR do?

Exposes humanTimeEstimate and humanTotalTimeSpent (for Issue type) in GraphQL.

  • the fields are required by the frontend as part of #37102 (closed) (Sidebar: Time tracking should be a Vue app) and already exposed via our REST API.

Sample query

{
  project(fullPath: "gitlab-org/gitlab-test") {
    issues {
      nodes {
        humanTimeEstimate
        humanTotalTimeSpent
      }
    }
  }
}

image

Does this MR meet the acceptance criteria?

Conformity

Related to #37102 (closed)

Edited by euko

Merge request reports

Loading