query()

in src/common/github-service.ts [344:366]


    query($commitNodeIds: [ID!]!) {
      nodes(ids: $commitNodeIds) {
        ... on Commit {
          associatedPullRequests(first: 1) {
            nodes {
              id
              url
              title
              number
              body
              author {
                login
              }
              labels(first: 50) {
                nodes {
                  name
                }
              }
            }
          }
        }
      }
    }