Created
November 9, 2019 19:41
-
-
Save LukeMwila/8aaa944ae017a9c2fe7a626da8b1ecd2 to your computer and use it in GitHub Desktop.
Database for json-server
This file contains hidden or 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
{ | |
"players": [ | |
{ | |
"id": "1", | |
"firstName": "Lebron", | |
"lastName": "James", | |
"teamId": "2" | |
}, | |
{ | |
"id": "2", | |
"firstName": "Steph", | |
"lastName": "Curry", | |
"teamId": "1" | |
}, | |
{ | |
"id": "3", | |
"firstName": "Anthony", | |
"lastName": "Davis", | |
"teamId": "2" | |
}, | |
{ | |
"id": "4", | |
"firstName": "Draymond", | |
"lastName": "Green", | |
"teamId": "1" | |
}, | |
{ | |
"id": "5", | |
"firstName": "Kyrie", | |
"lastName": "Irving", | |
"teamId": "3" | |
} | |
], | |
"teams": [ | |
{ | |
"id": "1", | |
"name": "Golden State Warriors" | |
}, | |
{ | |
"id": "2", | |
"name": "Los Angeles Lakers" | |
}, | |
{ | |
"id": "3", | |
"name": "Brookly Nets" | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment