gitlab-org--gitlab-foss/app/assets/javascripts/static_site_editor/graphql/queries/source_content.query.graphql

10 lines
180 B
GraphQL

query sourceContent($project: ID!, $sourcePath: String!) {
project(fullPath: $project) {
fullPath
file(path: $sourcePath) @client {
title
content
}
}
}