mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
26 lines
475 B
GraphQL
26 lines
475 B
GraphQL
query GetReleaseById($id: UUID!) {
|
|
publishedRelease(id: $id) {
|
|
branch
|
|
commit
|
|
version
|
|
previousRelease {
|
|
version
|
|
}
|
|
changelog
|
|
artifacts {
|
|
platform
|
|
artifactId
|
|
fileInfo {
|
|
...fileInfo
|
|
}
|
|
deltaFileInfo {
|
|
...fileInfo
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment fileInfo on ArtifactFileInfo {
|
|
md5Hash
|
|
downloadSize
|
|
} |