josh-github-codegen-graphql 26.5.8

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

  nodes(ids: $nodeIds) {
    __typename

    ... on CheckSuite {
      checkRuns(first: $pageSize, after: $endCursor) {
        pageInfo {
          startCursor
          endCursor
          hasPreviousPage
          hasNextPage
        }

        nodes {
          __typename

          ... _CheckRunInfo
        }
      }
    }
  }
}