Welcome to mirror list, hosted at ThFree Co, Russian Federation.

source_content.query.graphql « queries « graphql « static_site_editor « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: c8c4195e1cd6ffc87e761f12c7dc1f361df4b957 (plain)
1
2
3
4
5
6
7
8
9
10
query sourceContent($project: ID!, $sourcePath: String!) {
  project(fullPath: $project) {
    id
    fullPath
    file(path: $sourcePath) @client {
      title
      content
    }
  }
}