pub const NODE_LIMIT: u64 = 500_000;Expand description
GitHub’s published limit on the number of nodes one query may return.
Individual calls cannot request more than 500,000 total nodes.
— Rate limits and node limits for the GraphQL API.
This is a per-query ceiling on nodeCount. It is not the hourly cost
budget: that is a per-credential allowance spent across every call, and what
one call of a document spends against it is point_cost, not this.