summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/error_tracking/queries/details.query.graphql
blob: f65bdb9b968baef7145c87ccdacf8bc4267d5d7f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query errorDetails($fullPath: ID!, $errorId: ID!) {
    project(fullPath: $fullPath) {
        sentryDetailedError(id: $errorId) {
            id
            sentryId
            title
            userCount
            count
            firstSeen
            lastSeen
            message
            culprit
            externalUrl
            firstReleaseShortVersion
            lastReleaseShortVersion
        }
    }
}