30 lines
549 B
GraphQL
30 lines
549 B
GraphQL
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
|
|
}
|
|
}
|
|
}
|
|
}
|