10 lines
205 B
GraphQL
10 lines
205 B
GraphQL
#import "../fragments/release.fragment.graphql"
|
|
|
|
query oneRelease($fullPath: ID!, $tagName: String!) {
|
|
project(fullPath: $fullPath) {
|
|
id
|
|
release(tagName: $tagName) {
|
|
...Release
|
|
}
|
|
}
|
|
}
|