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

alert_note.fragment.graphql « fragments « graphql « alert_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c72300e9757af84822208d4fdbdcf0255a1bf1b3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#import "~/graphql_shared/fragments/author.fragment.graphql"

fragment AlertNote on Note {
    id
    author {
        id
        state
        ...Author
    }
    body
    bodyHtml
    createdAt
    discussion {
        id
    }
}