mirror of
https://github.com/Artemis-RGB/Artemis
synced 2025-12-13 05:48:35 +00:00
22 lines
505 B
GraphQL
22 lines
505 B
GraphQL
query GetReleases($branch: String!, $platform: Platform!, $take: Int!, $after: String) {
|
|
publishedReleases(
|
|
first: $take
|
|
after: $after
|
|
where: {
|
|
and: [
|
|
{ branch: { eq: $branch } }
|
|
{ artifacts: { some: { platform: { eq: $platform } } } }
|
|
]
|
|
}
|
|
) {
|
|
pageInfo {
|
|
hasNextPage
|
|
endCursor
|
|
}
|
|
nodes {
|
|
id
|
|
version
|
|
createdAt
|
|
}
|
|
}
|
|
} |