Skip to content

Commit

Permalink
fix(OpenCollective): update limits (#148)
Browse files Browse the repository at this point in the history
We've [changed](opencollective/opencollective-api#8875) the maximum limit for this parameter to `1000`. Sorry for the breaking change!
  • Loading branch information
Betree committed May 4, 2023
1 parent 7c5e347 commit 95c38fb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions content/static/js/opencollective_app.js
Expand Up @@ -5,7 +5,7 @@ const graphql_query =
account(slug: "kivy") {
name
slug
members(role: BACKER, accountType: $account_type, limit:9999999) {
members(role: BACKER, accountType: $account_type, limit:1000) {
nodes {
account {
id
Expand Down Expand Up @@ -70,4 +70,4 @@ var opencollective_app = createApp({
this.organizations = await fetch_contributors("ORGANIZATION", 256);
this.individuals = await fetch_contributors("INDIVIDUAL", 32);
}
}).mount("#opencollective_app");
}).mount("#opencollective_app");

0 comments on commit 95c38fb

Please sign in to comment.