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

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

query issueTimeTrackingReport($id: IssueID!) {
  issuable: issue(id: $id) {
    __typename
    id
    title
    timelogs {
      nodes {
        ...TimelogFragment
      }
    }
  }
}