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: e0cc6cc2dda24d342b6664f034acfd2017bcd064 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
fragment SnippetBase on Snippet {
  id
  title
  description
  descriptionHtml
  createdAt
  updatedAt
  visibilityLevel
  webUrl
  userPermissions {
    adminSnippet
    updateSnippet
  }
}