From 7ec6ec9193650307ed33505242504aea62b9a360 Mon Sep 17 00:00:00 2001 From: Dean Wenstrand Date: Mon, 15 Jun 2026 19:42:02 -0700 Subject: [PATCH] GetMyDrillRuns: include run date (video.createdAt) Co-Authored-By: Claude Opus 4.8 --- src/index.tsx | 4 ++++ src/operations/leaderboards.gql | 3 +++ 2 files changed, 7 insertions(+) diff --git a/src/index.tsx b/src/index.tsx index 13676cd..afb30a6 100644 --- a/src/index.tsx +++ b/src/index.tsx @@ -4667,6 +4667,7 @@ export type GetMyDrillRunsQuery = { id: number; runLength: number; videoId: number; + video: { __typename?: "VideoGQL"; createdAt?: any | null }; }>; }; @@ -9749,6 +9750,9 @@ export const GetMyDrillRunsDocument = gql` id runLength videoId + video { + createdAt + } } } `; diff --git a/src/operations/leaderboards.gql b/src/operations/leaderboards.gql index d18c999..3bbc5bb 100644 --- a/src/operations/leaderboards.gql +++ b/src/operations/leaderboards.gql @@ -66,5 +66,8 @@ query GetMyDrillRuns($drillTag: String!, $limit: Int = 50) { id runLength videoId + video { + createdAt + } } }