forked from remypereira/laravel-mongodb-crud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmongo_insert.txt
68 lines (62 loc) · 1.44 KB
/
mongo_insert.txt
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
db.books.insert(
[ {
"isbn": 9780060859749,
"title": "After Alice: A Novel",
"author": "Gregory Maguire",
"category": "Fiction"
},
{
"isbn": 9781505297409,
"title": "Treasure Island",
"author": "Robert Louis Stevenson",
"category": "Fiction"
},
{
"isbn": 9780071808552,
"title": "Java: The Complete Reference",
"author": "Herbert Schildt",
"category": "Computing"
},
{
"isbn": 9781909430167,
"title": "I Think Therefore I Play",
"author": "Herbert Schildt",
"category": "Biography"
},
{
"isbn": 9780553380163,
"title": "A Brief History of Time",
"author": "Stephen Hawking",
"category": "Cosmology"
},
{
"isbn": 9780340951699,
"title": "Mad, Bad and Dangerous to Know",
"author": "Ranulph Fiennes",
"category": "Geography"
},
{
"isbn": 9781615193585,
"title": "How to Read Water: Clues and Patterns from Puddles to the Sea",
"author": "Tristan Gooley",
"category": "Oceanography"
},
{
"isbn": 9781615193585,
"title": "Learning Robotics using Python",
"author": "Lentin Joseph",
"category": "Computing"
} ]
)
Mad, Bad and Dangerous to Know
ISBN-13: 9780340951699
ISBN-10: 0340951699
Author: Ranulph Fiennes
How to Read Water: Clues and Patterns from Puddles to the Sea
ISBN-13: 9781615193585
ISBN-10: 1615193588
Author: Tristan Gooley
Learning Robotics using Python
ISBN-13: 9781783287536
ISBN-10: 1783287535
Author: Lentin Joseph