19 lines
384 B
GraphQL
19 lines
384 B
GraphQL
|
query getBlobControls($projectPath: ID!, $filePath: String!, $ref: String!) {
|
||
|
project(fullPath: $projectPath) {
|
||
|
id
|
||
|
repository {
|
||
|
blobs(paths: [$filePath], ref: $ref) {
|
||
|
nodes {
|
||
|
id
|
||
|
findFilePath
|
||
|
blamePath
|
||
|
historyPath
|
||
|
permalinkPath
|
||
|
storedExternally
|
||
|
externalStorage
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|