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

work_item_dates.subscription.graphql « graphql « work_items « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 7e045fdf431c70d5cd8dbb6cca3c9efad270636c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
subscription issuableDatesUpdated($issuableId: IssuableID!) {
  issuableDatesUpdated(issuableId: $issuableId) {
    ... on WorkItem {
      id
      widgets {
        ... on WorkItemWidgetStartAndDueDate {
          dueDate
          startDate
        }
      }
    }
  }
}