-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdb.json
90 lines (90 loc) · 1.83 KB
/
db.json
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
90
{
"users": [
{
"email": "nisanur@gmail.com",
"password": "$2a$10$5aleejLr/qCFQ3UOB9Q9mudM/FmjFDg6KTiiBCsJ6gCSqcb54sFMK",
"id": 1
},
{
"email": "ece@gmail.com",
"password": "$2a$10$LE4FYwYqCgHpZ2uGdouh8uHxec8w2nbN8irQW83Du5kZu5TsGk.uK",
"id": 2
}
],
"ingredients": {
"meat": 0,
"salad": 0,
"cheese": 0,
"bacon": 0
},
"orders": [
{
"ingredients": {
"salad": 1,
"bacon": 1,
"cheese": 1,
"meat": 1
},
"price": 2.9000000000000004,
"customer": {
"name": "Nisanur",
"address": "Eskişehir",
"email": "nisanur@gmail.com"
},
"deliveryMethod": "fastest",
"userId": "nisanur@gmail.com",
"id": 1
},
{
"ingredients": {
"salad": 1,
"bacon": 1,
"cheese": 1,
"meat": 1
},
"price": 2.9000000000000004,
"customer": {
"name": "Melis",
"address": "Bursa",
"email": "melis@gmail.com"
},
"deliveryMethod": "fastest",
"userId": "nisanur@gmail.com",
"id": 2
},
{
"ingredients": {
"salad": 1,
"bacon": 1,
"cheese": 1,
"meat": 1
},
"price": 2.9000000000000004,
"customer": {
"name": "Ece",
"address": "Eskişehir",
"email": "ece@gmail.com"
},
"deliveryMethod": "fastest",
"userId": "ece@gmail.com",
"id": 3
},
{
"ingredients": {
"salad": 1,
"bacon": 1,
"cheese": 1,
"meat": 1
},
"price": 2.9000000000000004,
"customer": {
"name": "test",
"address": "Eskişehir",
"email": "nisanur@gmail.com"
},
"deliveryMethod": "fastest",
"userId": "nisanur@gmail.com",
"id": 4
}
]
}