Add score to PlayerSummaryFields + PlayerClusterFields fragments
All checks were successful
Tests / Tests (pull_request) Successful in 9s

Picks up the BE additions in railbird PR dean/video-match-score:
new `score` field on PlayerClusterGQL and PlayerSummaryGQL, and
a new `score` input field on ClusterAssignmentInput.

Generated by `just gql`.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Dean Wenstrand
2026-05-11 10:22:58 -07:00
parent 1182c15004
commit 0c9eb4945a
3 changed files with 18 additions and 0 deletions

View File

@@ -675,6 +675,7 @@ type PlayerSummaryGQL {
totalShots: Int!
totalShotsMade: Int!
makePercentage: Float!
score: Int
}
type DeployedConfigGQL {
@@ -879,6 +880,7 @@ type PlayerClusterGQL {
nShots: Int!
userId: Int
confirmed: Boolean!
score: Int
shots: [PlayerClusterShotGQL!]!
}
@@ -1211,6 +1213,7 @@ input FinalizePlayerAssignmentsInput {
input ClusterAssignmentInput {
clusterId: Int!
userId: Int = null
score: Int = null
}
input ShotMoveInput {