Skip to content

Instantly share code, notes, and snippets.

@mickadoo
Created July 4, 2017 16:09
Show Gist options
  • Save mickadoo/5116376b7165fa8e518e81e756d71428 to your computer and use it in GitHub Desktop.
Save mickadoo/5116376b7165fa8e518e81e756d71428 to your computer and use it in GitHub Desktop.
// one to many result
{
  "id": 1,
  "first_name": "john",
  "phones": [
    {
      "id": 1,
      "number": "40939394"
    }
  ]
}
// n to one result (same row)
{
  "id": 1,
  "number": "40939394",
  "contact.first_name": "john",
  "contact.id": 1
}
// n to one result (separate)

{
  "id": 1,
  "number": "40939394",
  "contact": {
    "id": 1,
    "first_name": "john"
  }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment