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

snippetBase.fragment.graphql « fragments « snippets « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 57348a422ecb0103cedcd67491b0cf63adaa9145 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
fragment SnippetBase on Snippet {
  id
  title
  description
  createdAt
  updatedAt
  visibilityLevel
  webUrl
  userPermissions {
    adminSnippet
    updateSnippet
  }
}