mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-12 21:38:38 +00:00
ColorGradient - Fixed GetColor returning the first stop if position was after the last stop
27 lines
493 B
GraphQL
27 lines
493 B
GraphQL
query GetReleaseById($id: UUID!) {
|
|
publishedRelease(id: $id) {
|
|
branch
|
|
commit
|
|
version
|
|
createdAt
|
|
previousRelease {
|
|
version
|
|
}
|
|
changelog
|
|
artifacts {
|
|
platform
|
|
artifactId
|
|
fileInfo {
|
|
...fileInfo
|
|
}
|
|
deltaFileInfo {
|
|
...fileInfo
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
fragment fileInfo on ArtifactFileInfo {
|
|
md5Hash
|
|
downloadSize
|
|
} |