Azure FHIR search for resources with _include expression not supported

I'm using following Azure For API(STU3) to play around. I'm trying to get other resources linked to DiagnosticReport resource with _include param.

https://xxx-xxx-xxxx.azurehealthcareapis.com/DiagnosticReport?_id=1234&_include=DiagnosticReport:encounter&_include=DiagnosticReport:result

But I'm getting following error : { "resourceType": "OperationOutcome", "id": "af40478f6fe6de47b8e0fc4f40e698ba", "issue": [ { "severity": "error", "code": "forbidden", "diagnostics": "Include expression is not supported." } ] }

Upvotes: -3

Views: 360

Answers (1)

Actually we just figured out that we are using CosmoDb in Azure FHIR which wont support Queries so the include revInclude search params wont work with CosmosDb instead they will work for SQL dbs.

Upvotes: 1

Related Questions