diff options
| author | Fuwn <[email protected]> | 2024-10-09 00:41:20 -0700 |
|---|---|---|
| committer | Fuwn <[email protected]> | 2024-10-09 00:41:43 -0700 |
| commit | 998b63a35256ac985a5a2714dd1ca451af4dfd8a (patch) | |
| tree | 50796121a9d5ab0330fdc5d7e098bda2860d9726 /src/graphql/anime/schema.graphql | |
| parent | feat(graphql): add badgeCount field (diff) | |
| download | due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.tar.xz due.moe-998b63a35256ac985a5a2714dd1ca451af4dfd8a.zip | |
chore(prettier): use spaces instead of tabs
Diffstat (limited to 'src/graphql/anime/schema.graphql')
| -rw-r--r-- | src/graphql/anime/schema.graphql | 30 |
1 files changed, 15 insertions, 15 deletions
diff --git a/src/graphql/anime/schema.graphql b/src/graphql/anime/schema.graphql index d5774966..a0415944 100644 --- a/src/graphql/anime/schema.graphql +++ b/src/graphql/anime/schema.graphql @@ -1,29 +1,29 @@ type Query { - Anime(timezone: String): Anime! + Anime(timezone: String): Anime! } type Anime { - subtitles: Subtitles + subtitles: Subtitles } type Subtitles { - timezone: String - schedule: SubtitleSchedule + timezone: String + schedule: SubtitleSchedule } type SubtitleSchedule { - monday: [Subtitle] - tuesday: [Subtitle] - wednesday: [Subtitle] - thursday: [Subtitle] - friday: [Subtitle] - saturday: [Subtitle] - sunday: [Subtitle] + monday: [Subtitle] + tuesday: [Subtitle] + wednesday: [Subtitle] + thursday: [Subtitle] + friday: [Subtitle] + saturday: [Subtitle] + sunday: [Subtitle] } type Subtitle { - title: String - page: String - image_url: String - time: String + title: String + page: String + image_url: String + time: String } |