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.
<Practitioner xmlns="http://hl7.org/fhir"> <id value="core-examples-Practitioner-example61" /> <meta> <versionId value="3" /> <lastUpdated value="2016-09-08T12:22:04.369+00:00" /> </meta> <text> <status value="generated" /> --- We have skipped the narrative for better readability of the resource --- </text> <identifier> <type> <coding> <system value="http://hl7.org/fhir/v2/0203" /> <code value="SS" /> </coding> </type> <system value="http://hl7.org/fhir/sid/us-ssn" /> <value value="222559999" /> </identifier> <name> <use value="official" /> <family value="Shrink" /> <given value="Serena" /> </name> <telecom> <system value="phone" /> <value value="555-555-1048" /> <use value="work" /> </telecom> <address> <use value="home" /> <line value="1046 Healthcare Drive" /> </address> <gender value="female" /> <practitionerRole> <managingOrganization> <reference value="Organization/hl7" /> </managingOrganization> </practitionerRole> </Practitioner>