70 lines
1.2 KiB
GraphQL
70 lines
1.2 KiB
GraphQL
|
query allReleases($fullPath: ID!) {
|
||
|
project(fullPath: $fullPath) {
|
||
|
releases(first: 20) {
|
||
|
count
|
||
|
nodes {
|
||
|
name
|
||
|
tagName
|
||
|
tagPath
|
||
|
descriptionHtml
|
||
|
releasedAt
|
||
|
upcomingRelease
|
||
|
assets {
|
||
|
count
|
||
|
sources {
|
||
|
nodes {
|
||
|
format
|
||
|
url
|
||
|
}
|
||
|
}
|
||
|
links {
|
||
|
nodes {
|
||
|
id
|
||
|
name
|
||
|
url
|
||
|
directAssetUrl
|
||
|
linkType
|
||
|
external
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
evidences {
|
||
|
nodes {
|
||
|
filepath
|
||
|
collectedAt
|
||
|
sha
|
||
|
}
|
||
|
}
|
||
|
links {
|
||
|
editUrl
|
||
|
issuesUrl
|
||
|
mergeRequestsUrl
|
||
|
selfUrl
|
||
|
}
|
||
|
commit {
|
||
|
sha
|
||
|
webUrl
|
||
|
title
|
||
|
}
|
||
|
author {
|
||
|
webUrl
|
||
|
avatarUrl
|
||
|
username
|
||
|
}
|
||
|
milestones {
|
||
|
nodes {
|
||
|
id
|
||
|
title
|
||
|
description
|
||
|
webPath
|
||
|
stats {
|
||
|
totalIssuesCount
|
||
|
closedIssuesCount
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|