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 + } } }