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

work_item_description.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: 4eb3d8067d9363a8e9dfb1d127f48549b7b8ce18 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
subscription issuableDescription($issuableId: IssuableID!) {
  issuableDescriptionUpdated(issuableId: $issuableId) {
    ... on WorkItem {
      id
      widgets {
        ... on WorkItemWidgetDescription {
          type
          description
          descriptionHtml
          lastEditedAt
          lastEditedBy {
            id
            name
            webPath
          }
        }
      }
    }
  }
}