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: 593cbf2ae52ebbbc58042c1aa474cfe26d0e3cc0 (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
query errorDetails($fullPath: ID!, $errorId: ID!) {
  project(fullPath: $fullPath) {
    sentryErrors {
      detailedError(id: $errorId) {
        id
        sentryId
        title
        userCount
        count
        status
        firstSeen
        lastSeen
        message
        culprit
        tags {
          level
          logger
        }
        externalUrl
        externalBaseUrl
        firstReleaseVersion
        lastReleaseVersion
        gitlabCommit
        gitlabCommitPath
        gitlabIssuePath
      }
    }
  }
}