mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
18 lines
409 B
GraphQL
18 lines
409 B
GraphQL
query GetReleases($branch: String!, $platform: Platform!) {
|
|
publishedReleases(
|
|
order: {createdAt: DESC}
|
|
first: 50
|
|
where: {
|
|
and: [
|
|
{ branch: { eq: $branch } }
|
|
{ artifacts: { some: { platform: { eq: $platform } } } }
|
|
]
|
|
}
|
|
) {
|
|
nodes {
|
|
id
|
|
version
|
|
createdAt
|
|
}
|
|
}
|
|
} |