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

typedefs.graphql « graphql « design_management_new « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fdbad4a90e0f18ab158faf4ee1e7923fe9e6e498 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
type ActiveDiscussion {
  id: ID
  source: String
}

extend type Query {
  activeDiscussion: ActiveDiscussion
}

extend type Mutation {
  updateActiveDiscussion(id: ID!, source: String!): Boolean
}