Skip to content

Instantly share code, notes, and snippets.

@LukeMwila
Created November 9, 2019 19:41
Show Gist options
  • Save LukeMwila/8aaa944ae017a9c2fe7a626da8b1ecd2 to your computer and use it in GitHub Desktop.
Save LukeMwila/8aaa944ae017a9c2fe7a626da8b1ecd2 to your computer and use it in GitHub Desktop.
Database for json-server
{
"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