Is there a way to etxract the resources of a type for a specific version id.
e.g something like this
http://fhir-server/hapi-fhir-jpaserver/fhir/Organization?versionId>30
I can go to the database and execute the below query to get results but same way if exists using the REST query?
select RES_VER, RES_TYPE
from HFJ_RESOURCE
where RES_VER >= 10 and Res_type = 'Practitioner'