forked from nikolasburk/rest-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
posts.json
39 lines (39 loc) · 827 Bytes
/
posts.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
{
"posts": [
{
"id": "post-0",
"title": "I like GraphQL",
"content": "I really do!",
"published": false,
"authorId": "user-1"
},
{
"id": "post-1",
"title": "GraphQL is better than REST",
"content": "It really is!",
"published": false,
"authorId": "user-1"
},
{
"id": "post-2",
"title": "GraphQL is awesome!",
"content": "You bet!",
"published": false,
"authorId": "user-2"
},
{
"id": "post-3",
"title": "Is REST really that bad?",
"content": "Not if you wrap it with GraphQL!",
"published": false,
"authorId": "user-3"
},
{
"id": "post-4",
"title": "I like turtles!",
"content": "...",
"published": false,
"authorId": "user-3"
}
]
}