debian-mirror-gitlab/app/assets/javascripts/sidebar/queries/get_issue_timelogs.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
242 B
GraphQL
Raw Normal View History

2021-06-08 01:23:25 +05:30
#import "~/graphql_shared/fragments/issuable_timelogs.fragment.graphql"
2021-12-11 22:18:48 +05:30
query issueTimeTrackingReport($id: IssueID!) {
2021-06-08 01:23:25 +05:30
issuable: issue(id: $id) {
id
title
timelogs {
nodes {
...TimelogFragment
}
}
}
}