We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7c1442 commit 6f42d83Copy full SHA for 6f42d83
src/api/posthogClient.ts
@@ -59,7 +59,9 @@ export class PostHogAPIClient {
59
60
async getTasks(repositoryOrg?: string, repositoryName?: string) {
61
const teamId = await this.getTeamId();
62
- const params: Record<string, string> = {};
+ const params: Record<string, string | number> = {
63
+ limit: 500,
64
+ };
65
66
if (repositoryOrg && repositoryName) {
67
params.repository_config__organization = repositoryOrg;
0 commit comments