Welcome to mirror list, hosted at ThFree Co, Russian Federation.

issue_time_tracking.fragment.graphql « fragments « graphql_shared « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: dbe6ad9f059fc46f902012e3119505ef630245f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#import "~/graphql_shared/fragments/issuable_timelogs.fragment.graphql"

fragment IssueTimeTrackingFragment on Issue {
  __typename
  id
  humanTotalTimeSpent
  totalTimeSpent
  timelogs {
    nodes {
      ...TimelogFragment
    }
  }
}