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

abuse_report.query.graphql « graphql « components « abuse_report « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f5b075cb9af097657bd1cfcd1ef277c5e25a32f6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
query abuseReportQuery($id: AbuseReportID!) {
  abuseReport(id: $id) {
    labels {
      nodes {
        id
        title
        description
        color
        textColor
      }
    }
  }
}