summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/work_items/graphql/work_item_milestone.subscription.graphql
blob: f5163003fe54fe0dca961d5c40f2d1dc6d0c4f35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import "~/work_items/graphql/milestone.fragment.graphql"

subscription issuableMilestone($issuableId: IssuableID!) {
  issuableMilestoneUpdated(issuableId: $issuableId) {
    ... on WorkItem {
      id
      widgets {
        ... on WorkItemWidgetMilestone {
          type
          milestone {
            ...MilestoneFragment
          }
        }
      }
    }
  }
}