Fix graphql generation
All checks were successful
Nix build / nix-build (homeModes.apollo) (push) Successful in 1m19s
Nix build / nix-build (homeModes.zeus) (push) Successful in 1m19s
Nix build / nix-build (nixosConfigurations.apollo.config.system.build.toplevel) (push) Successful in 17s
Nix build / nix-build (nixosConfigurations.fluffy.config.system.build.toplevel) (push) Successful in 19s
Nix build / nix-build (nixosConfigurations.hera.config.system.build.toplevel) (push) Successful in 19s
Nix build / nix-build (nixosConfigurations.zeus.config.system.build.toplevel) (push) Successful in 17s
Nix build / nix-flake-check (push) Successful in 31s

This commit is contained in:
maralorn 2023-08-29 22:06:46 +02:00
parent 125f22ce1e
commit 5cc7582098
No known key found for this signature in database
2 changed files with 2 additions and 2 deletions

View file

@ -1,5 +1,5 @@
query MergingPullRequest($commit: GitObjectID!, $m_owner: String!, $m_name: String!) {
repository(owner: $owner, name: $name) {
repository(owner: $m_owner, name: $m_name) {
object(oid: $commit) {
... on Commit {
associatedPullRequests(first: 10) {

View file

@ -78,7 +78,7 @@ instance GraphQLQuery MergingPullRequestQuery where
getQueryText _ =
[query|
query MergingPullRequest($commit: GitObjectID!, $m_owner: String!, $m_name: String!) {
repository(owner: $owner, name: $name) {
repository(owner: $m_owner, name: $m_name) {
object(oid: $commit) {
... on Commit {
associatedPullRequests(first: 10) {