-
Notifications
You must be signed in to change notification settings - Fork 1
/
schema.graphql
207 lines (152 loc) · 3.22 KB
/
schema.graphql
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
#
directive @cacheControl(
maxAge: Int
scope: CacheControlScope
) on FIELD_DEFINITION | OBJECT | INTERFACE
#
type Query {
# Get a specific character by ID
character(id: ID!): Character
# Get the list of all characters
characters(page: Int, filter: FilterCharacter): Characters
# Get a list of characters selected by ids
charactersByIds(ids: [ID!]!): [Character]
# Get a specific locations by ID
location(id: ID!): Location
# Get the list of all locations
locations(page: Int, filter: FilterLocation): Locations
# Get a list of locations selected by ids
locationsByIds(ids: [ID!]!): [Location]
# Get a specific episode by ID
episode(id: ID!): Episode
# Get the list of all episodes
episodes(page: Int, filter: FilterEpisode): Episodes
# Get a list of episodes selected by ids
episodesByIds(ids: [ID!]!): [Episode]
}
#
type Character {
# The id of the character.
id: ID
# The name of the character.
name: String
# The status of the character ('Alive', 'Dead' or 'unknown').
status: String
# The species of the character.
species: String
# The type or subspecies of the character.
type: String
# The gender of the character ('Female', 'Male', 'Genderless' or 'unknown').
gender: String
# The character's origin location
origin: Location
# The character's last known location
location: Location
# Link to the character's image.
# All images are 300x300px and most are medium shots or portraits since they are intended to be used as avatars.
image: String
# Episodes in which this character appeared.
episode: [Episode]!
# Time at which the character was created in the database.
created: String
}
#
type Location {
# The id of the location.
id: ID
# The name of the location.
name: String
# The type of the location.
type: String
# The dimension in which the location is located.
dimension: String
# List of characters who have been last seen in the location.
residents: [Character]!
# Time at which the location was created in the database.
created: String
}
#
type Episode {
# The id of the episode.
id: ID
# The name of the episode.
name: String
# The air date of the episode.
air_date: String
# The code of the episode.
episode: String
# List of characters who have been seen in the episode.
characters: [Character]!
# Time at which the episode was created in the database.
created: String
}
#
input FilterCharacter {
#
name: String
#
status: String
#
species: String
#
type: String
#
gender: String
}
#
type Characters {
#
info: Info
#
results: [Character]
}
#
type Info {
# The length of the response.
count: Int
# The amount of pages.
pages: Int
# Number of the next page (if it exists)
next: Int
# Number of the previous page (if it exists)
prev: Int
}
#
input FilterLocation {
#
name: String
#
type: String
#
dimension: String
}
#
type Locations {
#
info: Info
#
results: [Location]
}
#
input FilterEpisode {
#
name: String
#
episode: String
}
#
type Episodes {
#
info: Info
#
results: [Episode]
}
#
enum CacheControlScope {
#
PUBLIC
#
PRIVATE
}
# The `Upload` scalar type represents a file upload.
scalar Upload