-
Notifications
You must be signed in to change notification settings - Fork 6
/
booksJSON.js
72 lines (72 loc) · 1.05 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
db.books.insert([
{
_id: 0,
title: 'Wool',
author: 'Hugh Howey',
genre: 'Science Fiction',
read: false
},
{
_id: 1,
title: 'To Kill a Mockingbird',
author: 'Harper Lee',
genre: 'Fiction',
read: false
},
{
_id: 2,
title: 'Dune',
author: 'Frank Herbert',
genre: 'Science Fiction',
read: false
},
{
_id: 3,
title: 'The Fall of the Ottomans',
author: 'Eugene Rogan',
genre: 'History',
read: false
},
{
_id: 4,
title: 'Empire Falls',
author: 'Richard Russo',
genre: 'Fiction',
read: false
},
{
_id: 5,
title: 'Shift',
author: 'Hugh Howey',
genre: 'Science Fiction',
read: false
},
{
_id: 6,
title: 'Truman',
author: 'David McCullough',
genre: 'History',
read: false
},
{
_id: 7,
title: 'The Amazing Adventures of Kavalier and Klay',
author: 'Michael Chabon',
genre: 'Fiction',
read: false
},
{
_id: 8,
title: 'Ulysses',
author: 'James Joyce',
genre: 'Fiction',
read: false
},
{
_id: 9,
title: 'The Hobbit',
author: 'J.R. Tolkien',
genre: 'Fantasy',
read: false
}
])