Closed cunla closed 5 months ago
Currently, getting using graphql only releases. Get tags as well.
query ($owner: String!, $name: String!) { repository(owner: $owner, name: $name) { refs(refPrefix: "refs/tags/", first: 1, direction:DESC) { # totalCount # pageInfo { # endCursor # hasNextPage # } nodes { name # target { # ... on Commit { # abbreviatedOid # committedDate # } # ... on Tag { # target { # ... on Commit { # abbreviatedOid # committedDate # } # } # } # } } } } }
v2024.2.0
Describe the bug
Currently, getting using graphql only releases. Get tags as well.
Upvote & Fund