-
Notifications
You must be signed in to change notification settings - Fork 37
/
Copy patharticles.data.js
133 lines (133 loc) · 3.03 KB
/
articles.data.js
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
module.exports = [
{
id: '1',
title: 'JSON API paints my bikeshed!',
body: 'The shortest article. Ever.',
created: '2015-05-22T14:56:29.000Z',
updated: '2015-05-22T14:56:28.000Z',
author: {
id: '1',
firstName: 'Kaley',
lastName: 'Maggio',
email: '[email protected]',
age: '80',
gender: 'male',
},
tags: ['1', '2'],
photos: [
'ed70cf44-9a34-4878-84e6-0c0e4a450cfe',
'24ba3666-a593-498c-9f5d-55a4ee08c72e',
'f386492d-df61-4573-b4e3-54f6f5d08acf',
],
comments: [
{
_id: '1',
body: 'First !',
created: '2015-08-14T18:42:16.475Z',
},
{
_id: '2',
body: 'I Like !',
created: '2015-09-14T18:42:12.475Z',
},
{
_id: '3',
body: 'Awesome',
created: '2015-09-15T18:42:12.475Z',
},
],
translations: [
{
id: '1',
lang: 'es',
title: '¡JSON API pinta la caseta de la bici!',
body: 'El artículo más corto jamás escrito',
created: '2015-06-07T18:01:02.123Z',
},
{
id: '1',
lang: 'pt',
title: 'API JSON pinta a garagem da bicicleta!',
body: 'O artículo más corto jamás escrito',
created: '2015-06-07T20:01:02.123Z',
},
{
id: '1',
lang: 'de',
title: 'JSON API malt meinen Fahrradschuppen!',
body: 'Der kürzeste Artikel, der jemals geschrieben wurde',
created: '2015-06-07T22:01:02.123Z',
},
],
},
{
id: '2',
title: 'JSON API 1.0',
body: 'JSON API specifications',
created: '2015-05-23T14:56:29.000Z',
updated: '2015-05-24T14:56:28.000Z',
author: {
id: '2',
firstName: 'Harold',
lastName: 'Marvin',
email: '[email protected]',
age: '30',
gender: 'male',
},
tags: [
{
id: '3',
title: 'Tag 3',
},
{
id: '4',
title: 'Tag 4',
},
],
photos: [
'ed70cf44-9a34-4878-84e6-0c0e4a450cfe',
'24ba3666-a593-498c-9f5d-55a4ee08c72e',
'f386492d-df61-4573-b4e3-54f6f5d08acf',
],
comments: [
{
_id: '4',
body: 'Recommended',
created: '2015-08-14T18:42:16.475Z',
},
{
_id: '5',
body: 'Really nice',
created: '2015-09-14T18:42:12.475Z',
},
{
_id: '6',
body: 'Awesome',
created: '2015-09-15T18:42:12.475Z',
},
],
translations: [
{
id: '2',
lang: 'es',
title: 'JSON API 1.0',
body: 'Especificaciones de JSON API',
created: '2015-06-07T18:01:02.123Z',
},
{
id: '2',
lang: 'pt',
title: 'JSON API 1.0',
body: 'Especificações de JSON API',
created: '2015-06-07T20:01:02.123Z',
},
{
id: '2',
lang: 'de',
title: 'JSON API 1.0',
body: 'JSON API Spezifikationen',
created: '2015-06-07T22:01:02.123Z',
},
],
},
];