debian-mirror-gitlab/app/assets/javascripts/snippets/fragments/snippetBase.fragment.graphql

32 lines
439 B
GraphQL
Raw Normal View History

2020-04-22 19:07:51 +05:30
#import '~/graphql_shared/fragments/blobviewer.fragment.graphql'
2020-01-01 13:55:28 +05:30
fragment SnippetBase on Snippet {
id
title
description
2020-04-08 14:13:33 +05:30
descriptionHtml
2020-01-01 13:55:28 +05:30
createdAt
updatedAt
visibilityLevel
webUrl
2020-04-22 19:07:51 +05:30
httpUrlToRepo
sshUrlToRepo
blob {
binary
name
path
rawPath
size
simpleViewer {
...BlobViewer
}
richViewer {
...BlobViewer
}
}
2020-01-01 13:55:28 +05:30
userPermissions {
adminSnippet
updateSnippet
}
2020-04-22 19:07:51 +05:30
}