-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphql
266 lines (217 loc) · 6.51 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
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
type AlbumType implements Node {
"""The ID of the object."""
id: ID!
spotifyId: String
name: String
artist: ArtistType
trackSet(before: String, after: String, first: Int, last: Int): TrackTypeConnection!
}
type AlbumTypeConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [AlbumTypeEdge]!
}
"""A Relay edge containing a `AlbumType` and its cursor."""
type AlbumTypeEdge {
"""The item at the end of the edge"""
node: AlbumType
"""A cursor for use in pagination"""
cursor: String!
}
type ArtistType implements Node {
"""The ID of the object."""
id: ID!
spotifyId: String
name: String
trackSet(before: String, after: String, first: Int, last: Int): TrackTypeConnection!
albumSet(before: String, after: String, first: Int, last: Int): AlbumTypeConnection!
}
"""
The `DateTime` scalar type represents a DateTime
value as specified by
[iso8601](https://en.wikipedia.org/wiki/ISO_8601).
"""
scalar DateTime
interface Node {
"""The ID of the object."""
id: ID!
}
"""
The Relay compliant `PageInfo` type, containing data necessary to paginate this connection.
"""
type PageInfo {
"""When paginating forwards, are there more items?"""
hasNextPage: Boolean!
"""When paginating backwards, are there more items?"""
hasPreviousPage: Boolean!
"""When paginating backwards, the cursor to continue."""
startCursor: String
"""When paginating forwards, the cursor to continue."""
endCursor: String
}
type PlaylistConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [PlaylistEdge!]!
"""Total number of items in the queryset, regardless of pagination."""
count: Int!
"""Actual items in the queryset."""
nodes: [PlaylistType!]!
}
"""A Relay edge containing a `Playlist` and its cursor."""
type PlaylistEdge {
"""The item at the end of the edge"""
node: PlaylistType!
"""A cursor for use in pagination"""
cursor: String!
}
type PlaylistTrackAssociationConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [PlaylistTrackAssociationEdge!]!
"""Total number of items in the queryset, regardless of pagination."""
count: Int!
"""Actual items in the queryset."""
nodes: [PlaylistTrackAssociationType!]!
}
"""A Relay edge containing a `PlaylistTrackAssociation` and its cursor."""
type PlaylistTrackAssociationEdge {
"""The item at the end of the edge"""
node: PlaylistTrackAssociationType!
"""A cursor for use in pagination"""
cursor: String!
}
type PlaylistTrackAssociationType implements Node {
"""The ID of the object."""
id: ID!
playlist: PlaylistType
track: TrackType
addedAt: DateTime
order: Int!
}
type PlaylistTrackAssociationTypeConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [PlaylistTrackAssociationTypeEdge]!
}
"""
A Relay edge containing a `PlaylistTrackAssociationType` and its cursor.
"""
type PlaylistTrackAssociationTypeEdge {
"""The item at the end of the edge"""
node: PlaylistTrackAssociationType
"""A cursor for use in pagination"""
cursor: String!
}
type PlaylistType implements Node {
"""The ID of the object."""
id: ID!
spotifyId: String
name: String
description: String
public: Boolean!
imageUrl: String
snapshotId: String
owner: SpotifyProfileType
followers(before: String, after: String, first: Int, last: Int): SpotifyProfileTypeConnection!
trackEdges(sort: String, query: String, before: String, after: String, first: Int, last: Int): PlaylistTrackAssociationConnection
trackCount(query: String): Int
}
type PlaylistTypeConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [PlaylistTypeEdge]!
}
"""A Relay edge containing a `PlaylistType` and its cursor."""
type PlaylistTypeEdge {
"""The item at the end of the edge"""
node: PlaylistType
"""A cursor for use in pagination"""
cursor: String!
}
type Query {
"""The ID of the object"""
node(id: ID!): Node
"""The ID of the object"""
playlist(id: ID!): PlaylistType
followedPlaylists(before: String, after: String, first: Int, last: Int): PlaylistConnection
ownedPlaylists(before: String, after: String, first: Int, last: Int): PlaylistConnection
"""The ID of the object"""
track(id: ID!): TrackType
profile: SpotifyProfileType
}
type SpotifyProfileType implements Node {
"""The ID of the object."""
id: ID!
user: UserType
spotifyId: String
currentAccessToken: String
accessTokenExpirationDate: DateTime
refreshToken: String
hasStartedImportingData: Boolean!
hasFinishedImportingData: Boolean!
ownedPlaylists(before: String, after: String, first: Int, last: Int): PlaylistTypeConnection!
followedPlaylists(before: String, after: String, first: Int, last: Int): PlaylistTypeConnection!
}
type SpotifyProfileTypeConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [SpotifyProfileTypeEdge]!
}
"""A Relay edge containing a `SpotifyProfileType` and its cursor."""
type SpotifyProfileTypeEdge {
"""The item at the end of the edge"""
node: SpotifyProfileType
"""A cursor for use in pagination"""
cursor: String!
}
type TrackType implements Node {
"""The ID of the object."""
id: ID!
spotifyId: String
name: String
artist: ArtistType
album: AlbumType
needsDataImport: Boolean!
statAcousticness: Float!
statDanceability: Float!
statEnergy: Float!
statInstrumentalness: Float!
statSpeechiness: Float!
statLiveness: Float!
statValence: Float!
statMode: Float!
statDurationMs: Int!
statKey: Float!
statLoudness: Float!
statTempo: Float!
statTimeSignature: Float!
playlistEdges(before: String, after: String, first: Int, last: Int): PlaylistTrackAssociationTypeConnection!
localFile: Boolean
}
type TrackTypeConnection {
"""Pagination data for this connection."""
pageInfo: PageInfo!
"""Contains the nodes in this connection."""
edges: [TrackTypeEdge]!
}
"""A Relay edge containing a `TrackType` and its cursor."""
type TrackTypeEdge {
"""The item at the end of the edge"""
node: TrackType
"""A cursor for use in pagination"""
cursor: String!
}
type UserType implements Node {
"""The ID of the object."""
id: ID!
"""Required. 150 characters or fewer. Letters, digits and @/./+/-/_ only."""
username: String!
name: String
}