Created
April 4, 2017 17:49
-
-
Save richmolj/0f1e9afadff16a855b5599ce103ba78d to your computer and use it in GitHub Desktop.
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
data: { | |
type: 'authors', | |
attributes: { first_name: 'Stephen', last_name: 'King' }, | |
relationships: { | |
books: { | |
:"added-data" => [ | |
{ | |
:"temp-id" => "abc123", | |
type: 'books', | |
attributes: { title: 'The Shining' }, | |
relationships: { | |
tags: { | |
:"added-data" => [ | |
:"temp-id" => "def456", | |
type: 'tags', | |
attributes: { name: 'Scary' } | |
] | |
} | |
} | |
} | |
] | |
} | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment