25 lines
412 B
GraphQL
25 lines
412 B
GraphQL
|
#import '~/graphql_shared/fragments/blobviewer.fragment.graphql'
|
||
|
|
||
|
query SnippetBlobFull($ids: [ID!]) {
|
||
|
snippets(ids: $ids) {
|
||
|
edges {
|
||
|
node {
|
||
|
id
|
||
|
blob {
|
||
|
binary
|
||
|
name
|
||
|
path
|
||
|
rawPath
|
||
|
size
|
||
|
simpleViewer {
|
||
|
...BlobViewer
|
||
|
}
|
||
|
richViewer {
|
||
|
...BlobViewer
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|