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.
<Patient xmlns="http://hl7.org/fhir"> <identifier> <use value="official" /> <system value="http://fhir.nl/fhir/NamingSystem/bsn" /> <value value="017548718" /> </identifier> <identifier> <use value="usual" /> <system value="http://fhir.nl/fhir/NamingSystem/pid" /> <value value="051016000" /> </identifier> <active value="true" /> <name> <use value="official" /> <text value="Lans van der" /> <family value="Lans" /> <given value="Alex" /> <prefix value="A.A.C." /> <suffix value="van der" /> </name> <telecom> <system value="phone" /> <value value="06-12345678" /> <use value="home" /> </telecom> <telecom> <system value="email" /> <value value="test@miconsultancy.com" /> <use value="home" /> </telecom> <telecom> <system value="phone" /> <value value="06-11111111" /> <use value="mobile" /> </telecom> <gender value="male" /> <birthDate value="2016-10-05" /> <deceasedBoolean value="false" /> <address> <use value="home" /> <type value="postal" /> <text value="Teststraat 53" /> <line value="Teststraat" /> <line value="53" /> <line value="a" /> <city value="Amsterdam" /> <postalCode value="1212AB" /> <country value="NLD" /> </address> <multipleBirthInteger value="2" /> </Patient>