-
-
Save simistern/c243784f5d9e33b19b81b44774a357d3 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
const authorCollection = await authorResource.follow('author-collection'); | |
const newAuthor:Author = { | |
firstName: 'Ursula', | |
lastName: 'Le Guin', | |
}; | |
const newAuthorResource = await authorCollection.post(newAuthor); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment