git-touch-android-ios-app/lib/gql_github/issues.graphql

69 lines
1.2 KiB
GraphQL
Raw Normal View History

2022-09-30 21:49:56 +02:00
query Issues($owner: String!, $name: String!, $cursor: String) {
repository(owner: $owner, name: $name) {
issues(
states: OPEN
orderBy: { field: CREATED_AT, direction: DESC }
first: 30
after: $cursor
) {
pageInfo {
2022-09-30 22:50:47 +02:00
hasNextPage
endCursor
2022-09-30 21:49:56 +02:00
}
nodes {
number
title
updatedAt
author {
login
avatarUrl
}
labels(first: 10) {
nodes {
name
color
}
}
comments {
totalCount
}
}
}
}
}
## pulls
query Pulls($owner: String!, $name: String!, $cursor: String) {
repository(owner: $owner, name: $name) {
pullRequests(
states: OPEN
orderBy: { field: CREATED_AT, direction: DESC }
first: 30
after: $cursor
) {
pageInfo {
2022-09-30 22:50:47 +02:00
hasNextPage
endCursor
2022-09-30 21:49:56 +02:00
}
nodes {
number
title
updatedAt
author {
login
avatarUrl
}
labels(first: 10) {
nodes {
name
color
}
}
comments {
totalCount
}
}
}
}
}