gitlab-org--gitlab-foss/app/assets/javascripts/work_items/graphql/work_item_dates.subscriptio...

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

15 lines
289 B
GraphQL
Raw Normal View History

subscription issuableDatesUpdated($issuableId: IssuableID!) {
issuableDatesUpdated(issuableId: $issuableId) {
... on WorkItem {
id
widgets {
... on WorkItemWidgetStartAndDueDate {
type
dueDate
startDate
}
}
}
}
}