Stream: implementers
Topic: Paging
Aishwarya Ravindran (May 23 2018 at 21:56):
Are we allowed to use relative urls in the link element for a paged FHIR response?
<link>
<relation value="self">
<url value="Patient?name=peter&page=1"/>
</link>
Does the above url value conform to the FHIR specification?
Lloyd McKenzie (May 23 2018 at 22:09):
There is no search parameter that allows navigation to an arbitrary page. Systems return previous and next links (and sometimes first and last links). That's all you have to navigate with.
James Agnew (May 25 2018 at 12:04):
And I think the other half of that is that you can't put a relative link in a Bundle.link.url value, since a relative link is not a valid URI.
Last updated: Apr 12 2022 at 19:14 UTC