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.
<Medication xmlns="http://hl7.org/fhir"> <id value="ExampleISiKMedikament9" /> <meta> <profile value="https://gematik.de/fhir/isik/StructureDefinition/ISiKMedikament" /> </meta> <code> <text value="Infusion bestehend aus 142 mg Paclitaxel aufgelöst zur Verabreichung in 500 ml 5-%iger (50 mg/ml) Glucose-Infusionslösung" /> </code> <status value="active" /> <form> <coding> <system value="http://standardterms.edqm.eu" /> <code value="11210000" /> <display value="Solution for infusion" /> </coding> </form> <ingredient> <itemCodeableConcept> <coding> <system value="http://fhir.de/CodeSystem/bfarm/atc" /> <version value="2024" /> <code value="L01CD01" /> <display value="Paclitaxel" /> </coding> </itemCodeableConcept> <isActive value="true" /> <strength> <numerator> <value value="142" /> <unit value="mg" /> <system value="http://unitsofmeasure.org" /> <code value="mg" /> </numerator> <denominator> <value value="500" /> <unit value="Milliliter" /> <system value="http://unitsofmeasure.org" /> <code value="mL" /> </denominator> </strength> </ingredient> <ingredient> <itemCodeableConcept> <coding> <system value="http://fhir.de/CodeSystem/bfarm/atc" /> <version value="2024" /> <code value="B05BA11" /> <display value="Glucose" /> </coding> </itemCodeableConcept> <isActive value="false" /> <strength> <numerator> <value value="50" /> <unit value="mg" /> <system value="http://unitsofmeasure.org" /> <code value="mg" /> </numerator> <denominator> <value value="1" /> <unit value="Milliliter" /> <system value="http://unitsofmeasure.org" /> <code value="mL" /> </denominator> </strength> </ingredient> </Medication>