aboutsummaryrefslogtreecommitdiff
path: root/src/graphql/anime/schema.graphql
blob: aad7afec7d485dce7573e849f68ddefa46c27ed6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
type Query {
	Anime: Anime!
}

type Anime {
	airing: Airing
}

type Airing {
	generatedAt: Int
	sub: [AiringRelease]
	dub: [AiringRelease]
}

type AiringRelease {
	route: String
	title: String
	romaji: String
	english: String
	native: String
	episodeNumber: Int
	airingAt: Int
	delayedUntil: Int
	imageUrl: String
	streams: [Stream]
}

type Stream {
	platform: String
	url: String
	name: String
}