GetMyDrillRuns: include run date (video.createdAt)
All checks were successful
Tests / Tests (pull_request) Successful in 9s

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
Dean Wenstrand
2026-06-15 19:42:02 -07:00
parent 0ce333525c
commit 7ec6ec9193
2 changed files with 7 additions and 0 deletions

View File

@@ -4667,6 +4667,7 @@ export type GetMyDrillRunsQuery = {
id: number; id: number;
runLength: number; runLength: number;
videoId: number; videoId: number;
video: { __typename?: "VideoGQL"; createdAt?: any | null };
}>; }>;
}; };
@@ -9749,6 +9750,9 @@ export const GetMyDrillRunsDocument = gql`
id id
runLength runLength
videoId videoId
video {
createdAt
}
} }
} }
`; `;

View File

@@ -66,5 +66,8 @@ query GetMyDrillRuns($drillTag: String!, $limit: Int = 50) {
id id
runLength runLength
videoId videoId
video {
createdAt
}
} }
} }