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: fa579c94257d77b74dee26986d3e133b57501dd5 (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
                firstReleaseShortVersion
                lastReleaseShortVersion
                gitlabCommit
                gitlabCommitPath
                gitlabIssuePath
            }
        }
    }
}