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

details.query.graphql « queries « error_tracking « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f70e09d76f79dc9da3de69a8c21e8049f5782237 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
query errorDetails($fullPath: ID!, $errorId: ID!) {
  project(fullPath: $fullPath) {
    id
    sentryErrors {
      detailedError(id: $errorId) {
        id
        sentryId
        title
        userCount
        count
        status
        firstSeen
        lastSeen
        message
        culprit
        tags {
          level
          logger
        }
        externalUrl
        externalBaseUrl
        firstReleaseVersion
        lastReleaseVersion
        gitlabCommit
        gitlabCommitPath
        gitlabIssuePath
        integrated
      }
    }
  }
}