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

35 lines
649 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 {
2021-06-08 01:23:25 +05:30
blobs(paths: [$filePath]) {
nodes {
webPath
name
size
rawSize
rawTextBlob
fileType
path
editBlobPath
storedExternally
rawPath
replacePath
simpleViewer {
fileType
tooLarge
type
renderError
}
richViewer {
fileType
tooLarge
type
renderError
}
}
2021-04-29 21:17:54 +05:30
}
}
}
}