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

gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'app/assets/javascripts/work_items/graphql/work_item_dates.subscription.graphql')
-rw-r--r--app/assets/javascripts/work_items/graphql/work_item_dates.subscription.graphql14
1 files changed, 0 insertions, 14 deletions
diff --git a/app/assets/javascripts/work_items/graphql/work_item_dates.subscription.graphql b/app/assets/javascripts/work_items/graphql/work_item_dates.subscription.graphql
deleted file mode 100644
index d8760f147e1..00000000000
--- a/app/assets/javascripts/work_items/graphql/work_item_dates.subscription.graphql
+++ /dev/null
@@ -1,14 +0,0 @@
-subscription issuableDatesUpdated($issuableId: IssuableID!) {
- issuableDatesUpdated(issuableId: $issuableId) {
- ... on WorkItem {
- id
- widgets {
- ... on WorkItemWidgetStartAndDueDate {
- type
- dueDate
- startDate
- }
- }
- }
- }
-}