Files
gemini-cli/tools/optimizer/query.graphql
T
Christian Gunderman 87485c87a4 Script updates.
2026-04-23 07:57:37 -07:00

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 } }
}
}
}
}
}
}