Rockbox open source high quality audio player as a Music Player Daemon
mpris
rockbox
mpd
libadwaita
audio
rust
zig
deno
1"""Reusable GraphQL fragments. Inlined verbatim into queries — keep in sync with the schema."""
2
3TRACK_FIELDS = """
4fragment TrackFields on Track {
5 id title artist album genre disc trackString yearString
6 composer comment albumArtist grouping
7 discnum tracknum layer year bitrate frequency
8 filesize length elapsed path
9 albumId artistId genreId albumArt
10}
11"""
12
13ALBUM_FIELDS = """
14fragment AlbumFields on Album {
15 id title artist year yearString albumArt md5 artistId copyrightMessage
16}
17"""
18
19ARTIST_FIELDS = """
20fragment ArtistFields on Artist {
21 id name bio image
22}
23"""
24
25BLUETOOTH_DEVICE_FIELDS = """
26fragment BluetoothDeviceFields on BluetoothDevice {
27 address name paired trusted connected rssi
28}
29"""