debian-mirror-gitlab/app/assets/javascripts/static_site_editor/graphql/queries/source_content.query.graphql
2020-08-09 17:44:08 +05:30

9 lines
180 B
GraphQL

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