pathling-client

Client library for the Pathling FHIR API.

Usage no npm install needed!

<script type="module">
  import pathlingClient from 'https://cdn.skypack.dev/pathling-client';
</script>

README

pathling-client

This is a client library for the Pathling FHIR API, for use with JavaScript and TypeScript.

Example usage

import PathlingClient from 'pathling-client';

const client = new PathlingClient("https://demo.pathling.app/fhir");

// Invoke the import operation.
client.import({
  sources: [
    { resourceType: "Patient", url: "s3://somebucket/Patient.ndjson" },
    { resourceType: "Condition", url: "s3://somebucket/Condition.ndjson" },
  ]
}).then(result => console.log(result));

// Invoke the aggregate operation.
client.aggregate({
  subjectResource: "Patient",
  aggregations: ["count()"],
  groupings: [
    "reverseResolve(Condition.subject).code.coding" +
    ".where(subsumedBy(http://snomed.info/sct|73211009))"
  ]
}).then(result => console.log(result));

// Invoke the search operation.
client.search({
  subjectResource: "Patient",
  filters: [
    "(reverseResolve(Condition.subject).code.coding" +
    ".where($this.subsumedBy(http://snomed.info/sct|73211009))) " +
    "contains http://snomed.info/sct|427089005||'Diabetes from Cystic Fibrosis'"
  ],
}).then(result => console.log(result));

// Invoke the extract operation.
client.extract({
  subjectResource: "Patient",
  columns: [
    "id", 
    "reverseResolve(Condition.subject).code.coding"
  ],
  filters: [
    "reverseResolve(Condition.subject).code" +
    ".subsumedBy(http://snomed.info/sct|73211009).anyTrue"
  ]
}).then(result => console.log(result));

Pathling and "pathling-client" are copyright © 2018-2021, Commonwealth Scientific and Industrial Research Organisation (CSIRO) ABN 41 687 119 230. Licensed under the CSIRO Open Source Software Licence Agreement.