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

snippet.query.graphql « queries « snippets « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 2f385050d89f53a402a62aca8cb541b14c72b409 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#import '../fragments/snippetBase.fragment.graphql'
#import '../fragments/project.fragment.graphql'
#import "~/graphql_shared/fragments/author.fragment.graphql"

query GetSnippetQuery($ids: [ID!]) {
  snippets(ids: $ids) {
    nodes {
      ...SnippetBase
      ...SnippetProject
      author {
        ...Author
      }
    }
  }
}