Rest API - HATEOAS and Linking
What will be the output of this HAL JSON snippet when accessing the 'next' link?
{
"_links": {
"self": { "href": "/page/1" },
"next": { "href": "/page/2" }
}
}