summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/graphql_shared/fragments/issuable_timelogs.fragment.graphql
blob: 824997f8e33fc0e5cc52989ade10a6a6a3e63e23 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fragment TimelogFragment on Timelog {
  id
  timeSpent
  user {
    id
    name
  }
  spentAt
  note {
    id
    body
  }
  summary
}