-
Notifications
You must be signed in to change notification settings - Fork 0
/
booksJson.js
50 lines (50 loc) · 1.09 KB
/
booksJson.js
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
db.books.insert([
{
title: 'War and Peace',
genre: 'Historical Fiction',
author: 'Lev Nikolayevich Tolstoy',
read: false
},
{
title: 'Les Misérables',
genre: 'Historical Fiction',
author: 'Victor Hugo',
read: false
},
{
title: 'The Time Machine',
genre: 'Science Fiction',
author: 'H. G. Wells',
read: false
},
{
title: 'A Journey into the Center of the Earth',
genre: 'Science Fiction',
author: 'Jules Verne',
read: false
},
{
title: 'The Dark World',
genre: 'Fantasy',
author: 'Henry Kuttner',
read: false
},
{
title: 'The Wind in the Willows',
genre: 'Fantasy',
author: 'Kenneth Grahame',
read: false
},
{
title: 'Life On The Mississippi',
genre: 'History',
author: 'Mark Twain',
read: false
},
{
title: 'Childhood',
genre: 'Biography',
author: 'Lev Nikolayevich Tolstoy',
read: false
}
])