Skip to main content

QUERY

pub const QUERY: &str = "fragment _CheckRunInfo on CheckRun {\n  name\n  url\n  status\n  conclusion\n}\n\nquery CheckRunsGetSimple($nodeIds: [ID!]!, $limit: Int!) {\n  rateLimit {\n    cost\n    limit\n    nodeCount\n    remaining\n  }\n\n  nodes(ids: $nodeIds) {\n    __typename\n\n    ... on CheckSuite {\n      checkRuns(first: $limit) {\n        nodes {\n          __typename\n\n          ... _CheckRunInfo\n        }\n      }\n    }\n  }\n}\n\n";