diff options
| author | Fuwn <[email protected]> | 2023-11-22 17:32:09 -0800 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2023-11-22 17:32:09 -0800 |
| commit | 07acfb05dcb902707594f14c318e9ea774ba8145 (patch) | |
| tree | ab273ad86c45a04ee0211a5bcc1853a66f5c79ff /src/lib/AniList | |
| parent | feat(upcoming): move to dedicated section (diff) | |
| download | due.moe-07acfb05dcb902707594f14c318e9ea774ba8145.tar.xz due.moe-07acfb05dcb902707594f14c318e9ea774ba8145.zip | |
feat(wrapped): optional reread filter
Diffstat (limited to 'src/lib/AniList')
| -rw-r--r-- | src/lib/AniList/media.ts | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/AniList/media.ts b/src/lib/AniList/media.ts index 8e8f8fb5..7ba52589 100644 --- a/src/lib/AniList/media.ts +++ b/src/lib/AniList/media.ts @@ -42,6 +42,7 @@ export interface Media { progressVolumes: number; status: 'CURRENT' | 'PLANNING' | 'COMPLETED' | 'DROPPED' | 'PAUSED' | 'REPEATING'; score: number; + repeat: number; startedAt: { year: number; }; @@ -91,7 +92,7 @@ const collectionQueryTemplate = (type: Type, userId: number, includeCompleted: b title { romaji english native } nextAiringEpisode { episode timeUntilAiring } mediaListEntry { - progress progressVolumes status + progress progressVolumes status repeat score(format: POINT_100) startedAt { year } } startDate { year } |