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

snippet_blob_content.query.graphql « snippet « queries « graphql « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4459a5e43169e5e3edf6005a652dc085d37a5520 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
query SnippetBlobContent($ids: [ID!], $rich: Boolean!, $paths: [String!]) {
  snippets(ids: $ids) {
    __typename
    nodes {
      __typename
      id
      blobs(paths: $paths) {
        __typename
        nodes {
          __typename
          path
          richData @include(if: $rich)
          plainData @skip(if: $rich)
        }
        hasUnretrievableBlobs
      }
    }
  }
}