Skip to content

Instantly share code, notes, and snippets.

@eob
Created December 12, 2016 23:30
Show Gist options
  • Save eob/ee372217d79df2e39b1282d3d6813339 to your computer and use it in GitHub Desktop.
Save eob/ee372217d79df2e39b1282d3d6813339 to your computer and use it in GitHub Desktop.
Input for Belongs to Exercise
{
"Teams": [
{
"Name": "Patriots",
"Players": [
{"Name": "Tom Brady"},
{"Name": "Rob Gronkowski"}
]
},
{
"Name": "49ers",
"Players": [
{"Name": "Colin Kaepernick"},
{"Name": "Anthony Davis"}
]
}
],
"Players": [
{"Name": "Tom Brady", "Belongs to Teams!Name": "Patriots"},
{"Name": "Rob Gronkowski", "Belongs to Teams!Name": "Patriots"},
{"Name": "Colin Kaepernick", "Belongs to Teams!Name": "49ers"},
{"Name": "Anthony Davis", "Belongs to Teams!Name": "49ers"}
]
}
{
"Teams": [
{ "Name": "Patriots" },
{ "Name": "49ers" }
],
"Players": [
{
"Name": "Tom Brady",
"Has one Teams!Name": "Patriots",
"Teams": {
"Name": "Patriots"
}
},
{
"Name": "Rob Gronkowski",
"Has one Teams!Name": "Patriots",
"Teams": {
"Name": "Patriots"
}
},
{
"Name": "Colin Kaepernick",
"Has one Teams!Name": "Patriots",
"Teams": {
"Name": "Patriots"
}
},
{
"Name": "Anthony Davis",
"Has one Teams!Name": "Patriots",
"Teams": {
"Name": "Patriots"
}
}
]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment