You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
127 lines
3.3 KiB
127 lines
3.3 KiB
import { ReferenceDatabase } from "../reference_model/DBReferenceModel"; |
|
|
|
export const sampleDB: ReferenceDatabase = { |
|
[1]: { |
|
tracks: [ |
|
{ |
|
mbApi_typename: "track", |
|
id: 1, |
|
name: "No One Knows", |
|
artistIds: [1], |
|
tagIds: [2], |
|
albumId: 2, |
|
storeLinks: [], |
|
}, |
|
{ |
|
mbApi_typename: "track", |
|
id: 2, |
|
name: "See Jam", |
|
artistIds: [3], |
|
tagIds: [3, 5], |
|
albumId: 1, |
|
storeLinks: [], |
|
}, |
|
{ |
|
mbApi_typename: "track", |
|
id: 3, |
|
name: "Apocalypshit", |
|
artistIds: [2], |
|
tagIds: [4], |
|
albumId: 3, |
|
storeLinks: [], |
|
}, |
|
], |
|
albums: [ |
|
{ |
|
mbApi_typename: "album", |
|
id: 1, |
|
name: "Lithuanian Artillery", |
|
artistIds: [3], |
|
tagIds: [3, 5], |
|
trackIds: [2], |
|
storeLinks: [], |
|
}, |
|
{ |
|
mbApi_typename: "album", |
|
id: 2, |
|
name: "Songs For The Deaf", |
|
artistIds: [1], |
|
tagIds: [2], |
|
trackIds: [1], |
|
storeLinks: [], |
|
}, |
|
{ |
|
mbApi_typename: "album", |
|
id: 3, |
|
name: "Apocalypshit", |
|
artistIds: [2], |
|
tagIds: [4], |
|
trackIds: [3], |
|
storeLinks: [], |
|
}, |
|
], |
|
artists: [ |
|
{ |
|
mbApi_typename: "artist", |
|
id: 1, |
|
name: "Queens Of The Stone Age", |
|
tagIds: [2], |
|
trackIds: [1], |
|
albumIds: [2], |
|
storeLinks: [], |
|
}, |
|
{ |
|
mbApi_typename: "artist", |
|
id: 2, |
|
name: "Molotov", |
|
tagIds: [4], |
|
trackIds: [3], |
|
albumIds: [3], |
|
storeLinks: [], |
|
}, |
|
{ |
|
mbApi_typename: "artist", |
|
id: 3, |
|
name: "The Schwings Band", |
|
tagIds: [3, 5], |
|
trackIds: [2], |
|
albumIds: [1], |
|
storeLinks: [], |
|
}, |
|
], |
|
tags: [ |
|
{ |
|
mbApi_typename: "tag", |
|
id: 1, |
|
name: "Genre", |
|
parentId: null, |
|
}, |
|
{ |
|
mbApi_typename: "tag", |
|
id: 2, |
|
name: "Desert Rock", |
|
parentId: 1, |
|
}, |
|
{ |
|
mbApi_typename: "tag", |
|
id: 3, |
|
name: "Swing", |
|
parentId: 1, |
|
}, |
|
{ |
|
mbApi_typename: "tag", |
|
id: 4, |
|
name: "Crazy", |
|
parentId: 1, |
|
}, |
|
{ |
|
mbApi_typename: "tag", |
|
id: 5, |
|
name: "Lindy Hop", |
|
parentId: null, |
|
}, |
|
], |
|
} |
|
} |
|
|
|
export default sampleDB; |