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

29 lines
675 B
GraphQL
Raw Normal View History

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