aboutsummaryrefslogtreecommitdiff
path: root/src/graphql/anime/schema.graphql
blob: 7ec6d6bee42b21b3c521bfecdd91ad21be56286a (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
33
type Query {
	Anime: Anime!
}

type Anime {
	airing: Airing
}

type Airing {
	generatedAt: Int
	native: [AiringRelease]
	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
}