debian-mirror-gitlab/app/assets/javascripts/repository/queries/blob_info.query.graphql
2021-09-04 01:27:46 +05:30

35 lines
688 B
GraphQL

query getBlobInfo($projectPath: ID!, $filePath: String!) {
project(fullPath: $projectPath) {
repository {
blobs(paths: [$filePath]) {
nodes {
webPath
name
size
rawSize
rawTextBlob
fileType
path
editBlobPath
ideEditPath
storedExternally
rawPath
replacePath
canModifyBlob
simpleViewer {
fileType
tooLarge
type
renderError
}
richViewer {
fileType
tooLarge
type
renderError
}
}
}
}
}
}