-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathdb.json
More file actions
155 lines (152 loc) · 2.99 KB
/
Copy pathdb.json
File metadata and controls
155 lines (152 loc) · 2.99 KB
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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
{
"users": [
{
"id": 1,
"email": "user1@example.com",
"picture": "user1.jpg",
"firstName": "John",
"lastName": "Doe",
"isAdmin": 1,
"nickName": "johnd",
"introduction": "Hello, I'm John!",
"board": [1, 2],
"comment": [1, 2],
"reply": [1, 2],
"like": [1, 2]
},
{
"id": 2,
"email": "user2@example.com",
"picture": "user2.jpg",
"firstName": "Jane",
"lastName": "Smith",
"isAdmin": null,
"nickName": "janes",
"introduction": "Nice to meet you!",
"board": [3],
"comment": [3],
"reply": [3],
"like": [3]
}
],
"likes": [
{
"id": 1,
"b_id": 1,
"u_id": 1
},
{
"id": 2,
"b_id": 2,
"u_id": 1
},
{
"id": 3,
"b_id": 3,
"u_id": 2
}
],
"boards": [
{
"id": 1,
"title": "First Board",
"content": "This is the content of the first board.",
"like": [1],
"views": 100,
"createdAt": "2023-07-18T12:34:56.789Z",
"comment": [1, 2],
"u_id": 1
},
{
"id": 2,
"title": "Second Board",
"content": "This is the content of the second board.",
"like": [2],
"views": 50,
"createdAt": "2023-07-18T12:45:23.456Z",
"comment": [3],
"u_id": 1
},
{
"id": 3,
"title": "Third Board",
"content": "This is the content of the third board.",
"like": [3],
"views": 75,
"createdAt": "2023-07-18T13:00:00.000Z",
"comment": [],
"u_id": 2
},
{
"id": 4,
"title": "First Board",
"content": "This is the content of the first board.",
"like": [1],
"views": 100,
"createdAt": "2023-07-18T12:34:56.789Z",
"comment": [1, 2],
"u_id": 1
}
],
"comments": [
{
"id": 1,
"commenter": "Alice",
"content": "This is the first comment.",
"img": "comment1.jpg",
"like": 10,
"reply": [1],
"boardId": 1,
"u_id": 1
},
{
"id": 2,
"commenter": "Bob",
"content": "This is the second comment.",
"img": "comment2.jpg",
"like": 5,
"reply": [2],
"boardId": 1,
"u_id": 1
},
{
"id": 3,
"commenter": "Eve",
"content": "This is the third comment.",
"img": "comment3.jpg",
"like": 15,
"reply": [3],
"boardId": 2,
"u_id": 2
}
],
"replies": [
{
"id": 1,
"commenter": "Carol",
"img": "reply1.jpg",
"content": "This is the first reply.",
"like": 2,
"c_id": 1,
"u_id": 2
},
{
"id": 2,
"commenter": "Dave",
"img": "reply2.jpg",
"content": "This is the second reply.",
"like": 3,
"c_id": 2,
"u_id": 1
},
{
"id": 3,
"commenter": "Frank",
"img": "reply3.jpg",
"content": "This is the third reply.",
"like": 1,
"c_id": 3,
"u_id": 1
}
]
}