Files
novem/src/api/graphql/list_pull_requests.graphql

30 lines
708 B
GraphQL
Raw Normal View History

2026-05-11 00:32:12 +08:00
query PullRequestPaginationQuery($query: String!) {
2026-05-08 02:23:28 +08:00
search(query: $query, first: 10, type: ISSUE) {
issueCount
edges {
node {
__typename
... on PullRequest {
2026-05-11 00:32:12 +08:00
id
2026-05-08 02:23:28 +08:00
isDraft
title
state
repository {
name
owner {
__typename
login
}
}
}
}
cursor
}
pageInfo {
startCursor
endCursor
hasNextPage
}
}
}