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: c58a5168ba37fa45dd0ac977100d55e9a42d1f8a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#import '../fragments/snippetBase.fragment.graphql'
#import '../fragments/project.fragment.graphql'
#import "~/graphql_shared/fragments/author.fragment.graphql"

query GetSnippetQuery($ids: [ID!]) {
  snippets(ids: $ids) {
    edges {
      node {
        ...SnippetBase
        ...Project
        author {
          ...Author
        }
      }
    }
  }
}