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