josh-github-codegen-graphql 26.5.8

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

  nodes(ids: $nodeIds) {
    __typename

    ... on CheckSuite {
      checkRuns(first: $limit) {
        nodes {
          __typename

          ... _CheckRunInfo
        }
      }
    }
  }
}