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

abuse_report_note.fragment.graphql « notes « graphql « abuse_report « admin « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 84b57b4ed79ede1396065ddac6df5577be5023eb (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
30
#import "~/graphql_shared/fragments/author.fragment.graphql"
#import "./abuse_report_note_permissions.fragment.graphql"

fragment AbuseReportNote on Note {
  id
  body
  bodyHtml
  createdAt
  lastEditedAt
  url
  resolved
  author {
    ...Author
  }
  lastEditedBy {
    ...Author
    webPath
  }
  userPermissions {
    ...AbuseReportNotePermissions
  }
  discussion {
    id
    notes {
      nodes {
        id
      }
    }
  }
}