From 296522afb8aa7dadf5f5284d34204d865ee17cce Mon Sep 17 00:00:00 2001 From: Dean Wenstrand Date: Mon, 11 May 2026 13:21:47 -0700 Subject: [PATCH] Regenerate schema + add longestRun to PlayerSummaryFields Generated by `just gql` after BE added longest_run to PlayerSummaryGQL. Co-Authored-By: Claude Opus 4.7 (1M context) --- src/index.tsx | 7 +++++++ src/operations/shooter.gql | 1 + src/schema.gql | 1 + 3 files changed, 9 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 86ed770..1b896b3 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -2723,6 +2723,7 @@ export type PlayerClusterShotGql = { export type PlayerSummaryGql = { __typename?: "PlayerSummaryGQL"; clusterId: Scalars["Int"]["output"]; + longestRun: Scalars["Int"]["output"]; makePercentage: Scalars["Float"]["output"]; profileImageUri?: Maybe; representativeFullFrameUrl?: Maybe; @@ -4206,6 +4207,7 @@ export type GetFeedQuery = { totalShotsMade: number; makePercentage: number; score?: number | null; + longestRun: number; }>; currentProcessing?: { __typename?: "VideoProcessingGQL"; @@ -4307,6 +4309,7 @@ export type VideoCardFieldsFragment = { totalShotsMade: number; makePercentage: number; score?: number | null; + longestRun: number; }>; currentProcessing?: { __typename?: "VideoProcessingGQL"; @@ -4422,6 +4425,7 @@ export type GetVideoFeedQuery = { totalShotsMade: number; makePercentage: number; score?: number | null; + longestRun: number; }>; currentProcessing?: { __typename?: "VideoProcessingGQL"; @@ -5004,6 +5008,7 @@ export type PlayerSummaryFieldsFragment = { totalShotsMade: number; makePercentage: number; score?: number | null; + longestRun: number; }; export type PlayerClusterShotFieldsFragment = { @@ -6046,6 +6051,7 @@ export type GetVideoDetailsQuery = { totalShotsMade: number; makePercentage: number; score?: number | null; + longestRun: number; }>; }; }; @@ -6715,6 +6721,7 @@ export const PlayerSummaryFieldsFragmentDoc = gql` totalShotsMade makePercentage score + longestRun } `; export const UserSocialsFieldsFragmentDoc = gql` diff --git a/src/operations/shooter.gql b/src/operations/shooter.gql index 85da20e..eb60946 100644 --- a/src/operations/shooter.gql +++ b/src/operations/shooter.gql @@ -8,6 +8,7 @@ fragment PlayerSummaryFields on PlayerSummaryGQL { totalShotsMade makePercentage score + longestRun } fragment PlayerClusterShotFields on PlayerClusterShotGQL { diff --git a/src/schema.gql b/src/schema.gql index 1af0a08..43e4bf3 100644 --- a/src/schema.gql +++ b/src/schema.gql @@ -676,6 +676,7 @@ type PlayerSummaryGQL { totalShotsMade: Int! makePercentage: Float! score: Int + longestRun: Int! } type DeployedConfigGQL {