PaginationMode Parameter (Connect-FHIR Cmdlet)
The type of pagination implemented by the FHIR server. The default value is NextLink.
Syntax
Connect-FHIR -PaginationMode string
Possible Values
NextLink, LimitOffsetData Type
cstr
Default Value
"NextLink"
Remarks
The following options are generally available to all connections:
- NextLink: The driver uses the NextLink URL that is provided by the FHIR server on the response for the next page call.
- LimitOffset: In the case that the FHIR server does not implement the NextLink pagination or has a predefined pattern of URLs that uses 3 parameters (limit/offset/snapshot), we can dynamically implement the pagination in parallel by providing naming conventions in the corresponding connection properties: PaginationLimitName, PaginationOffsetName and PaginationSnapshotName.
This is a required parameter.