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/diffs/components/graphql/get_mr_codequality_reports.query.graphql')
-rw-r--r--app/assets/javascripts/diffs/components/graphql/get_mr_codequality_reports.query.graphql46
1 files changed, 0 insertions, 46 deletions
diff --git a/app/assets/javascripts/diffs/components/graphql/get_mr_codequality_reports.query.graphql b/app/assets/javascripts/diffs/components/graphql/get_mr_codequality_reports.query.graphql
deleted file mode 100644
index b6920d0f6ec..00000000000
--- a/app/assets/javascripts/diffs/components/graphql/get_mr_codequality_reports.query.graphql
+++ /dev/null
@@ -1,46 +0,0 @@
-query getMRCodequalityReports($fullPath: ID!, $iid: String!) {
- project(fullPath: $fullPath) {
- id
- mergeRequest(iid: $iid) {
- id
- title
- codequalityReportsComparer {
- report {
- status
- newErrors {
- description
- fingerprint
- severity
- filePath
- line
- webUrl
- engineName
- }
- resolvedErrors {
- description
- fingerprint
- severity
- filePath
- line
- webUrl
- engineName
- }
- existingErrors {
- description
- fingerprint
- severity
- filePath
- line
- webUrl
- engineName
- }
- summary {
- errored
- resolved
- total
- }
- }
- }
- }
- }
-}