forked from CloudyBae/dsd-grocery
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
19 lines (14 loc) · 1.37 KB
/
db.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{
"getShoppingList": [
{"id": 1, "user": 2, "ingredient": "1033", "name": "parmesan", "image": "https://spoonacular.com/cdn/ingredients_100x100/parmesan.jpg", "quantity": 2, "is_purchased": false},
{"id": 2, "user": 2, "ingredient": "2044", "name": "basil", "image": "https://spoonacular.com/cdn/ingredients_100x100/basil.jpg", "quantity": 4, "is_purchased": false},
{"id": 3, "user": 2, "ingredient": "11215","name": "garlic", "image": "https://spoonacular.com/cdn/ingredients_100x100/garlic.png", "quantity": 6, "is_purchased": false},
{"id": 4, "user": 3, "ingredient": "20420","name": "pasta", "image": "https://spoonacular.com/cdn/ingredients_100x100/fusilli.jpg", "quantity": 1, "is_purchased": true}
],
"getIngredients": [
{"id": 1, "name": "parmesan", "image": "https://spoonacular.com/cdn/ingredients_100x100/parmesan.jpg", "quantity": 2, "user": "2", "preference": 1},
{"id": 2, "name": "basil", "image": "https://spoonacular.com/cdn/ingredients_100x100/basil.jpg", "quantity": 4, "user": "2", "preference": 1},
{"id": 3, "name": "garlic", "image": "https://spoonacular.com/cdn/ingredients_100x100/garlic.png", "quantity": 6, "user": "2", "preference": 1},
{"id": 4, "name": "pasta", "image": "https://spoonacular.com/cdn/ingredients_100x100/fusilli.jpg", "quantity": 1, "user": "3", "preference": 1}
]
}