debian-mirror-gitlab/app/graphql/queries/snippet/snippet_blob_content.query.graphql

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
396 B
GraphQL
Raw Normal View History

2022-07-16 23:28:13 +05:30
query SnippetBlobContent($ids: [SnippetID!], $rich: Boolean!, $paths: [String!]) {
2020-03-13 15:44:24 +05:30
snippets(ids: $ids) {
2021-01-29 00:20:46 +05:30
__typename
2021-01-03 14:25:43 +05:30
nodes {
2021-01-29 00:20:46 +05:30
__typename
2021-01-03 14:25:43 +05:30
id
blobs(paths: $paths) {
2021-01-29 00:20:46 +05:30
__typename
2021-01-03 14:25:43 +05:30
nodes {
2021-01-29 00:20:46 +05:30
__typename
2020-10-24 23:57:45 +05:30
path
2020-03-13 15:44:24 +05:30
richData @include(if: $rich)
plainData @skip(if: $rich)
}
2022-02-27 12:50:16 +05:30
hasUnretrievableBlobs
2020-03-13 15:44:24 +05:30
}
}
}
}