1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
2023-03-25 09:55:38 +01:00

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
}