FQL is a query language that allows you to retrieve, filter and project data from any data source containing FHIR Resources. It brings the power of three existing languages together: SQL, JSON and FhirPath. It allows you to create tables and is useful for gaining insight and perform quality control.
Invocations
[base]/RelatedPerson?address-postalcode=[text]
[base]/Practitioner?address-postalcode=[text]
[base]/Person?address-postalcode=[text]
[base]/Patient?address-postalcode=[text]
Details
Resource | Code | Type | FhirPath | Xpath (Normal) |
RelatedPerson, Practitioner, Person, Patient | address-postalcode | string | RelatedPerson.address.postalCode | Practitioner.address.postalCode | Person.address.postalCode | Patient.address.postalCode | f:RelatedPerson/f:address/f:postalCode | f:Practitioner/f:address/f:postalCode | f:Person/f:address/f:postalCode | f:Patient/f:address/f:postalCode |