-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathdatabase.json
More file actions
78 lines (78 loc) · 1.3 KB
/
Copy pathdatabase.json
File metadata and controls
78 lines (78 loc) · 1.3 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
{
"users": [
{
"_id": 1,
"name": "Bruno"
},
{
"_id": 2,
"name": "João"
},
{
"_id": 3,
"name": "Tammy"
},
{
"_id": 4,
"name": "Emily"
},
{
"_id": 5,
"name": "Robert"
},
{
"_id": 6,
"name": "Joan"
},
{
"_id": 7,
"name": "Jennifer"
},
{
"_id": 8,
"name": "Kathy"
},
{
"_id": 9,
"name": "Tracy"
},
{
"_id": 10,
"name": "Judy"
}
],
"agenda": [
{
"_id": 1000,
"userId": 1,
"date": "2017-03-30T22:00:00.000Z",
"title": "GraphQL Talk",
"appointmentType": "event",
"notes": "Bring my notebook"
},
{
"_id": 1001,
"userId": 1,
"date": "2017-03-29T19:00:00.000Z",
"title": "Meeting with Tracy",
"appointmentType": "meeting",
"invitedUsers":[9]
},
{
"_id": 1002,
"userId": 1,
"date": "2017-03-20T18:00:00.000Z",
"title": "Meeting with Joan and Judy",
"appointmentType": "meeting",
"invitedUsers":[6, 10]
},
{
"_id": 1003,
"userId": 9,
"date": "2017-03-20T18:00:00.000Z",
"title": "Some lorem event",
"appointmentType": "event",
"notes": "Learn ipsum"
}
]
}