gitlab-org--gitlab-foss/app/assets/javascripts/snippets/queries/snippet.query.graphql

18 lines
364 B
GraphQL

#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
...SnippetProject
author {
...Author
}
}
}
}
}