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: 625ce3030d9a148fabfc54d458e127a8eb865ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
query errorDetails($fullPath: ID!, $errorId: ID!) {
    project(fullPath: $fullPath) {
        sentryDetailedError(id: $errorId) {
            id
            sentryId
            title
            userCount
            count
            firstSeen
            lastSeen
            message
            culprit
            externalUrl
            firstReleaseShortVersion
            lastReleaseShortVersion
            gitlabCommit
            gitlabCommitPath
        }
    }
}