fix: add limit arg to Tournament.topScorers in GraphQL schema

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-06-14 17:05:31 +02:00
parent 0eb0fb5ee4
commit 9926673ffd
+1 -1
View File
@@ -10,7 +10,7 @@ export const typeDefs = /* GraphQL */ `
matchesCount: Int
totalGoals: Int
avgGoalsPerGame: Float
topScorers: [ScorerEntry!]!
topScorers(limit: Int): [ScorerEntry!]!
matches: [Match!]!
}