From 9926673ffd8507292984baf6e2c8a47a6e04d150 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Sebastian=20Kr=C3=BCger?= Date: Sun, 14 Jun 2026 17:05:31 +0200 Subject: [PATCH] fix: add limit arg to Tournament.topScorers in GraphQL schema Co-Authored-By: Claude Sonnet 4.6 --- lib/graphql/schema.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/graphql/schema.ts b/lib/graphql/schema.ts index 8b28aa9..cb56b21 100644 --- a/lib/graphql/schema.ts +++ b/lib/graphql/schema.ts @@ -10,7 +10,7 @@ export const typeDefs = /* GraphQL */ ` matchesCount: Int totalGoals: Int avgGoalsPerGame: Float - topScorers: [ScorerEntry!]! + topScorers(limit: Int): [ScorerEntry!]! matches: [Match!]! }