In the Basics tutorial, we learned that a link in IPFS is represented as an instance of CID
:
{
linkToAwesomeNode: awesomeCid
}
When we give a field a name and make its value a link to a CID, we call this a named link.
The challenge below has some prepared code to get us started. The data structure resembles a blog which has two authors, Nat and Sam, and some blog posts about trees and computers. At the moment there’s no relation between them. Let’s update the blog posts so that they link to the author.
Modify the two existing blog posts by adding a new field author
that links to the author of each post. The post about trees was authored by Sam, while Nat wrote the post about computers.
Feeling stuck? We'd love to hear what's confusing so we can improve this lesson. Please share your questions and feedback.