1
0
mirror of https://github.com/Artemis-RGB/Artemis synced 2025-12-13 05:48:35 +00:00
Robert fbf908c032 Workshop - Fixed email not being detected as verified
Settings - Fixed new releases not loading when there are more than 20
2023-09-20 22:55:37 +02:00

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
}
}
}