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.
<Bundle xmlns="http://hl7.org/fhir"> <id value="e0a51662-2a75-40fa-899f-87eab54056ba" /> <meta> <lastUpdated value="2023-03-06T10:33:13.848+01:00" /> </meta> <type value="searchset" /> <total value="1" /> <link> <relation value="self" /> <url value="<host>/fhir/Patient/?family=john" /> </link> <entry> <fullUrl value="<host>/fhir/Patient/470" /> <resource> <Patient> <id value="470" /> <meta> <profile value="https://fhir.cambio.se/StructureDefinition/PatientLiteSe" /> </meta> <identifier> <use value="official" /> <system value="urn:oid:1.2.752.129.2.1.3.1" /> <value value="195503071770" /> </identifier> <name> <family value="john" /> <given value="Anders" /> </name> <gender value="male" /> <birthDate value="1955-03-07" /> <deceasedBoolean value="false" /> </Patient> </resource> </entry> </Bundle>