-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpopulate-database-category-books.sh
executable file
·89 lines (80 loc) · 4.57 KB
/
populate-database-category-books.sh
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "The Silent City",
"description": "A mysterious, genre-defying novel that blends elements of suspense, history, and psychological drama.",
"price": 14.99,
"images": ["https://example.com/images/silentcity1.jpg", "https://example.com/images/silentcity2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Unseen Press"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "Waves of Thought",
"description": "A deep exploration of human consciousness, blending philosophy and modern science.",
"price": 19.99,
"images": ["https://example.com/images/wavesofthought1.jpg", "https://example.com/images/wavesofthought2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Mindscape Publishing"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "In Between Time",
"description": "A surreal narrative that plays with time, memory, and reality in unexpected ways.",
"price": 12.99,
"images": ["https://example.com/images/inbetweentime1.jpg", "https://example.com/images/inbetweentime2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Eclipse Press"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "Whispers of the Forgotten",
"description": "A historical mystery novel set in a forgotten town, blending crime fiction with literary fiction.",
"price": 15.99,
"images": ["https://example.com/images/whispersforgotten1.jpg", "https://example.com/images/whispersforgotten2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Hidden Stories"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "Fragments of Light",
"description": "An introspective look at how light and shadow define our lives and choices, in both literal and metaphorical senses.",
"price": 17.99,
"images": ["https://example.com/images/fragmentsoflight1.jpg", "https://example.com/images/fragmentsoflight2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Reflective Works"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "Echoes Across the Void",
"description": "A philosophical exploration of human existence across the cosmos, examining the intersection of technology and the soul.",
"price": 22.99,
"images": ["https://example.com/images/echoesvoid1.jpg", "https://example.com/images/echoesvoid2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Cosmic Editions"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "The Last Question",
"description": "An anthology of speculative fiction that questions the future of humanity and artificial intelligence.",
"price": 18.99,
"images": ["https://example.com/images/lastquestion1.jpg", "https://example.com/images/lastquestion2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Futurescape Publishing"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d "{
\"name\": \"The Alchemist's Paradox\",
\"description\": \"A novel that intertwines magical realism, historical fiction, and philosophical musings on fate and free will.\",
\"price\": 16.99,
\"images\": [\"https://example.com/images/alchemistsparadox1.jpg\", \"https://example.com/images/alchemistsparadox2.jpg\"],
\"categoryId\": \"67827cb87c8364072523fb58\",
\"brand\": \"Mysterium Publishing\"
}"
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "A Dance with Silence",
"description": "A collection of poetic works examining silence, solitude, and the unspoken emotions between individuals.",
"price": 9.99,
"images": ["https://example.com/images/dancewithsilence1.jpg", "https://example.com/images/dancewithsilence2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "Silent Words"
}'
curl -X POST "http://localhost:8000/products" -H "Content-Type: application/json" -d '{
"name": "Rivers of Thought",
"description": "A deeply philosophical book examining the nature of thought, consciousness, and the human mind.",
"price": 21.99,
"images": ["https://example.com/images/riversofthought1.jpg", "https://example.com/images/riversofthought2.jpg"],
"categoryId": "67827cb87c8364072523fb58",
"brand": "DeepMind Publishing"
}'