Created
January 30, 2019 12:30
-
-
Save kustraslawomir/5ff9cf29d34cb8aea73f0a38e5a8a615 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"posts": [ | |
{ | |
"id": 1, | |
"title": "Post 1" | |
}, | |
{ | |
"id": 2, | |
"title": "Post 2" | |
}, | |
{ | |
"id": 3, | |
"title": "Post 3" | |
} | |
], | |
"comments": [ | |
{ | |
"id": 1, | |
"body": "some comment", | |
"postId": 1 | |
}, | |
{ | |
"id": 2, | |
"body": "some comment", | |
"postId": 1 | |
} | |
], | |
"profile": { | |
"name": "typicode" | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment