debian-mirror-gitlab/app/assets/javascripts/repository/queries/blob_info.query.graphql

31 lines
549 B
GraphQL
Raw Normal View History

2021-04-29 21:17:54 +05:30
query getBlobInfo($projectPath: ID!, $filePath: String!) {
project(fullPath: $projectPath) {
id
repository {
blobs(path: $filePath) {
name
size
rawBlob
type
fileType
tooLarge
path
editBlobPath
ideEditPath
storedExternally
rawPath
externalStorageUrl
replacePath
deletePath
canLock
isLocked
lockLink
canModifyBlob
forkPath
simpleViewer
richViewer
}
}
}
}