FHIR stu3
tried this: http://fhirtest.uhn.ca/baseDstu3/PlanDefinition/20630?_revinclude=ActivityDefinition based on the example from : http://build.fhir.org/search.html#include but it returned 400 Bad Request
thanks
FHIR stu3
tried this: http://fhirtest.uhn.ca/baseDstu3/PlanDefinition/20630?_revinclude=ActivityDefinition based on the example from : http://build.fhir.org/search.html#include but it returned 400 Bad Request
thanks
There are 4 issues with your syntax:
ActivityDefinition:plandefinition
, not just ActivityDefinition
Because of the 4th issue, you're not going to be able to execute this test against any of the public test servers - unless you make special arrangements, they only support core search criteria. However, on your own system, you're free to define your own search criteria. If you were to do that, you ought to be able to make the query work using the following url:
[base]/PlanDefinition?_id=20630&_include=activitydefinition
(Assuming that you've named your custom search criteria having a path of PlanDefinition.activity.activityDefinition as having a name of "activitydefinition")