18 lines
384 B
GraphQL
18 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
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|