debian-mirror-gitlab/app/assets/javascripts/pipeline_wizard/queries/get_file_meta.graphql
2022-04-04 11:22:00 +05:30

13 lines
235 B
GraphQL

query GetFileMetadata($fullPath: ID!, $filePath: String!, $ref: String) {
project(fullPath: $fullPath) {
id
repository {
blobs(paths: [$filePath], ref: $ref) {
nodes {
id
}
}
}
}
}