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

19 lines
384 B
GraphQL
Raw Normal View History

2022-03-02 08:16:31 +05:30
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
}
}
}
}
}