mirror of
https://github.com/google-gemini/gemini-cli.git
synced 2026-05-15 06:12:50 -07:00
16 lines
329 B
GraphQL
16 lines
329 B
GraphQL
query($owner: String!, $repo: String!) {
|
|
repository(owner: $owner, name: $repo) {
|
|
pullRequests(last: 100, states: MERGED) {
|
|
nodes {
|
|
number
|
|
reviews(first: 20) {
|
|
nodes {
|
|
authorAssociation
|
|
author { login, ... on User { name } }
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|