-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathschema.gql
141 lines (126 loc) · 3.3 KB
/
schema.gql
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
schema {
query: Query
}
directive @cacheControl(maxAge: Int, scope: CacheControlScope) on FIELD_DEFINITION | INTERFACE | OBJECT
directive @client on FIELD
enum CacheControlScope {
PRIVATE
PUBLIC
}
type Character {
"""Time at which the character was created in the database."""
created: String!
"""Episodes in which this character appeared."""
episode: [Episode!]!
"""
The gender of the character ('Female', 'Male', 'Genderless' or 'unknown').
"""
gender: String!
"""The id of the character."""
id: ID!
"""
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!
"""The character's last known location"""
location: Location!
"""The name of the character."""
name: String!
"""The character's origin location"""
origin: Location!
"""The species of the character."""
species: String!
"""The status of the character ('Alive', 'Dead' or 'unknown')."""
status: String!
"""The type or subspecies of the character."""
type: String!
}
type Characters {
info: Info!
results: [Character!]!
}
type Episode {
"""The air date of the episode."""
air_date: 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
"""The code of the episode."""
episode: String
"""The id of the episode."""
id: ID!
"""The name of the episode."""
name: String
}
type Episodes {
info: Info
results: [Episode]
}
input FilterCharacter {
gender: String
name: String
species: String
status: String
type: String
}
input FilterEpisode {
episode: String
name: String
}
input FilterLocation {
dimension: String
name: String
type: String
}
type Info {
"""The length of the response."""
count: Int
"""Number of the next page (if it exists)"""
next: Int
"""The amount of pages."""
pages: Int
"""Number of the previous page (if it exists)"""
prev: Int
}
type Location {
"""Time at which the location was created in the database."""
created: String
"""The dimension in which the location is located."""
dimension: String
"""The id of the location."""
id: ID!
"""The name of the location."""
name: String
"""List of characters who have been last seen in the location."""
residents: [Character]!
"""The type of the location."""
type: String
}
type Locations {
info: Info
results: [Location]
}
type Query {
"""Get a specific character by ID"""
character(id: ID!): Character!
"""Get the list of all characters"""
characters(filter: FilterCharacter, page: Int): Characters!
"""Get a list of characters selected by ids"""
charactersByIds(ids: [ID!]!): [Character!]!
"""Get a specific episode by ID"""
episode(id: ID!): Episode
"""Get the list of all episodes"""
episodes(filter: FilterEpisode, page: Int): Episodes
"""Get a list of episodes selected by ids"""
episodesByIds(ids: [ID!]!): [Episode]
"""Get a specific locations by ID"""
location(id: ID!): Location
"""Get the list of all locations"""
locations(filter: FilterLocation, page: Int): Locations
"""Get a list of locations selected by ids"""
locationsByIds(ids: [ID!]!): [Location]
}
"""The `Upload` scalar type represents a file upload."""
scalar Upload