I am trying to form a request like :
Using HAPI FHIR Java API, how can I parse following params :
Schedule.actor:Practitioner=1234
Schedule.actor:Practitioner.location=5678
This is definitely supported.
Assuming you're creating a server, you would want a parameter on your resource provider method like:
@IncludeParam(allow={"Schedule:actor","Schedule:practitioner"})
Set<Include> theIncludes
Add "*"
to the list of strings to just whitelist anything