-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.graphqls
89 lines (79 loc) · 1.8 KB
/
schema.graphqls
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
# ------------------------------------------------------
# THIS FILE WAS AUTOMATICALLY GENERATED (DO NOT MODIFY)
# ------------------------------------------------------
type Image {
url: String!
width: Int
height: Int
}
type Artist {
id: String!
serviceName: String!
name: String!
artistImages: [Image!]!
albums(offset: Int, limit: Int, locale: String): ArtistAlbums!
}
type PartialArtist {
id: String!
name: String!
}
type TrackAlbum {
id: String!
title: String!
artists: [PartialArtist!]!
releaseDate: String!
trackCount: Int!
albumArts: [Image!]!
}
type Track {
id: String!
serviceName: String!
title: String!
duration: Int!
track: Int!
disc: Int!
year: String!
artists: [PartialArtist!]!
album: TrackAlbum!
}
type ReleaseDate {
year: Int!
month: Int
day: Int
timestamp: Int!
}
type AlbumTrack {
id: String!
title: String!
duration: Int!
track: Int!
disc: Int!
year: String!
artists: [PartialArtist!]!
}
type Album {
id: String!
serviceName: String!
title: String!
artists: [PartialArtist!]!
releaseDate: ReleaseDate
trackCount: Int!
albumArts: [Image!]!
tracks: [AlbumTrack!]!
}
type ArtistAlbums {
total: Int!
items: [Album!]!
}
type Query {
track(id: String!, locale: String): Track
tracks(ids: [String!]!, locale: String): [Track]!
searchTracks(query: String!, limit: Int, locale: String): [Track!]!
album(id: String!, locale: String): Album
artistAlbums(offset: Int, limit: Int, locale: String, artistId: String!): ArtistAlbums
albums(ids: [String!]!, locale: String): [Album]!
searchAlbums(query: String!, limit: Int, locale: String): [Album!]!
artist(id: String!, locale: String): Artist
artists(ids: [String!]!, locale: String): [Artist]!
searchArtists(query: String!, limit: Int, locale: String): [Artist!]!
}