josh-github-codegen-graphql 26.5.8

GitHub GraphQL codegen for Josh
Documentation
query CheckRunsDiscover($nodeIds: [ID!]!) {
  rateLimit {
    cost
    limit
    nodeCount
    remaining
  }

  nodes(ids: $nodeIds) {
    __typename

    ... on Commit {
      checkSuites(first: 100) {
        nodes {
          ... _CheckSuiteInfo

          checkRuns {
            totalCount
          }
        }
      }
    }
  }
}