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/typedefs.graphql')
-rw-r--r--app/assets/javascripts/work_items/graphql/typedefs.graphql11
1 files changed, 0 insertions, 11 deletions
diff --git a/app/assets/javascripts/work_items/graphql/typedefs.graphql b/app/assets/javascripts/work_items/graphql/typedefs.graphql
index 36779dfe11e..fda71fabe22 100644
--- a/app/assets/javascripts/work_items/graphql/typedefs.graphql
+++ b/app/assets/javascripts/work_items/graphql/typedefs.graphql
@@ -1,6 +1,5 @@
enum LocalWidgetType {
ASSIGNEES
- MILESTONE
}
interface LocalWorkItemWidget {
@@ -12,11 +11,6 @@ type LocalWorkItemAssignees implements LocalWorkItemWidget {
nodes: [UserCore]
}
-type LocalWorkItemMilestone implements LocalWorkItemWidget {
- type: LocalWidgetType!
- nodes: [Milestone!]
-}
-
extend type WorkItem {
mockWidgets: [LocalWorkItemWidget]
}
@@ -29,14 +23,9 @@ input LocalUserInput {
avatarUrl: String
}
-input LocalMilestoneInput {
- milestoneId: ID!
-}
-
input LocalUpdateWorkItemInput {
id: WorkItemID!
assignees: [LocalUserInput!]
- milestone: LocalMilestoneInput!
}
type LocalWorkItemPayload {