Skip to main content

GraphQL service for exposing OMOP CDM records.

Project description

GraphQL service for exposing OMOP CDM records.

Exported scripts

  • load-omop-cdm-db-records

  • run-omop-cdm-graphql-app

Step 1 - Create Python virtual environment

python3 -m venv venv

Step 2 - Activate Python virtual environment

source venv/bin/activate

Step 3 - Install

pip install omop-cdm-graphql

Step 4 - Update the configuration file

---
port: 8081
url: http://localhost
database_file: /tmp/omop-cdm-graphql/omop-cdm-v1.db

Step 5 - Copy configuration file to launch directory

cp venv/lib/python3.10/site-packages/omop_cdm_graphql/conf/config.yaml .

Step 6 - Load the database

Run the loader to load mock records.

load-omop-cdm-db-records

Step 7 - Run the app

run-omop-cdm-graphql-app

Step 8 - Open browser

http://localhost:8080/graphql

Step 9 - Execute queries

Query 1 - Retrieve person 1

query {
  person(personId: 1) {
    personId
    genderConceptId
    birthDatetime
    observations {
      observationId
      observationConceptId
      observationDate
    }
    conditions {
      conditionOccurrenceId
      conditionConceptId
      conditionStartDate
    }
  }
}

Result:

{
  "data": {
    "person": {
      "personId": 1,
      "genderConceptId": 8507,
      "birthDatetime": "1990-01-01T00:00:00",
      "observations": [
        {
          "observationId": 1,
          "observationConceptId": 123,
          "observationDate": "2023-01-01T00:00:00"
        },
        {
          "observationId": 7,
          "observationConceptId": 129,
          "observationDate": "2023-07-10T00:00:00"
        }
      ],
      "conditions": [
        {
          "conditionOccurrenceId": 1,
          "conditionConceptId": 456,
          "conditionStartDate": "2023-02-01T00:00:00"
        },
        {
          "conditionOccurrenceId": 7,
          "conditionConceptId": 462,
          "conditionStartDate": "2023-08-20T00:00:00"
        }
      ]
    }
  }
}

Query 2 - Retrieve all persons

query {
  allPersons {
    personId
    genderConceptId
    birthDatetime
  }
}

Result:

{
  "data": {
    "allPersons": [
      {
        "personId": 1,
        "genderConceptId": 8507,
        "birthDatetime": "1990-01-01T00:00:00"
      },
      {
        "personId": 2,
        "genderConceptId": 8532,
        "birthDatetime": "1985-05-15T00:00:00"
      },
      {
        "personId": 3,
        "genderConceptId": 8507,
        "birthDatetime": "1978-03-22T00:00:00"
      },
      {
        "personId": 4,
        "genderConceptId": 8532,
        "birthDatetime": "1995-07-10T00:00:00"
      },
      {
        "personId": 5,
        "genderConceptId": 8507,
        "birthDatetime": "1982-11-30T00:00:00"
      },
      {
        "personId": 6,
        "genderConceptId": 8532,
        "birthDatetime": "2000-04-15T00:00:00"
      }
    ]
  }
}

Query 3 - Filter Persons by Gender

Purpose: Shows how GraphQL lets clients filter data without needing a separate endpoint.

query {
  personsByGender(genderConceptId: 8532) {
    personId
    birthDatetime
    observations {
      observationId
      observationDate
    }
  }
}

Returns only female persons (gender_concept_id = 8532) with their observations. Client specifies exactly what fields they want (e.g., skipping conditions or genderConceptId), avoiding over-fetching.

Result:

{
  "data": {
    "personsByGender": [
      {
        "personId": 2,
        "birthDatetime": "1985-05-15T00:00:00",
        "observations": [
          {
            "observationId": 2,
            "observationDate": "2023-03-15T00:00:00"
          }
        ]
      },
      {
        "personId": 4,
        "birthDatetime": "1995-07-10T00:00:00",
        "observations": [
          {
            "observationId": 4,
            "observationDate": "2023-05-20T00:00:00"
          }
        ]
      },
      {
        "personId": 6,
        "birthDatetime": "2000-04-15T00:00:00",
        "observations": [
          {
            "observationId": 6,
            "observationDate": "2023-06-01T00:00:00"
          }
        ]
      }
    ]
  }
}

Query 4 - Recent Observations

Purpose: Demonstrates time-based filtering and standalone access to related entities.

query {
  recentObservations(afterDate: "2023-03-01") {
    observationId
    observationConceptId
    observationDate
  }
}

Returns observations after March 1, 2023 (e.g., observation IDs 2, 4, 6, 7). No need to fetch persons first; GraphQL lets you query related data directly, reducing round trips.

Result:

{
  "data": {
    "recentObservations": [
      {
        "observationId": 2,
        "observationConceptId": 124,
        "observationDate": "2023-03-15T00:00:00"
      },
      {
        "observationId": 4,
        "observationConceptId": 126,
        "observationDate": "2023-05-20T00:00:00"
      },
      {
        "observationId": 6,
        "observationConceptId": 128,
        "observationDate": "2023-06-01T00:00:00"
      },
      {
        "observationId": 7,
        "observationConceptId": 129,
        "observationDate": "2023-07-10T00:00:00"
      }
    ]
  }
}

Query 5 - Persons with a Specific Condition

Purpose: Highlights nested relationship traversal and conditional filtering.

query {
  personsWithCondition(conditionConceptId: 456) {
    personId
    genderConceptId
    conditions {
      conditionOccurrenceId
      conditionStartDate
    }
    observations {
      observationId
    }
  }
}

Returns persons with condition_concept_id 456 (just person 1) and their conditions and observations. Combines filtering with flexible field selection across relationships in one request—impossible in REST without multiple calls or a custom endpoint.

Query - Nested Data with Selective Fields

Purpose: Shows how clients can pick and choose fields across relationships.

query {
  allPersons {
    personId
    birthDatetime
    observations {
      observationDate
    }
    conditions {
      conditionConceptId
    }
  }
}

Returns all 6 persons with only their birth dates, observation dates, and condition concept IDs. Avoids over-fetching unused fields (e.g., gender_concept_id, observation_id) and simplifies frontend logic—no need to parse bloated responses.

Results:

{
  "data": {
    "allPersons": [
      {
        "personId": 1,
        "birthDatetime": "1990-01-01T00:00:00",
        "observations": [
          {
            "observationDate": "2023-01-01T00:00:00"
          },
          {
            "observationDate": "2023-07-10T00:00:00"
          }
        ],
        "conditions": [
          {
            "conditionConceptId": 456
          },
          {
            "conditionConceptId": 462
          }
        ]
      },
      {
        "personId": 2,
        "birthDatetime": "1985-05-15T00:00:00",
        "observations": [
          {
            "observationDate": "2023-03-15T00:00:00"
          }
        ],
        "conditions": [
          {
            "conditionConceptId": 457
          }
        ]
      },
      {
        "personId": 3,
        "birthDatetime": "1978-03-22T00:00:00",
        "observations": [
          {
            "observationDate": "2022-12-10T00:00:00"
          }
        ],
        "conditions": [
          {
            "conditionConceptId": 458
          }
        ]
      },
      {
        "personId": 4,
        "birthDatetime": "1995-07-10T00:00:00",
        "observations": [
          {
            "observationDate": "2023-05-20T00:00:00"
          }
        ],
        "conditions": [
          {
            "conditionConceptId": 459
          }
        ]
      },
      {
        "personId": 5,
        "birthDatetime": "1982-11-30T00:00:00",
        "observations": [
          {
            "observationDate": "2023-01-25T00:00:00"
          }
        ],
        "conditions": [
          {
            "conditionConceptId": 460
          }
        ]
      },
      {
        "personId": 6,
        "birthDatetime": "2000-04-15T00:00:00",
        "observations": [
          {
            "observationDate": "2023-06-01T00:00:00"
          }
        ],
        "conditions": [
          {
            "conditionConceptId": 461
          }
        ]
      }
    ]
  }
}

Query - Single Person Deep Dive

Purpose: Demonstrates deep nesting and customization.

query {
  person(personId: 1) {
    personId
    birthDatetime
    observations {
      observationId
      observationConceptId
      observationDate
    }
    conditions {
      conditionOccurrenceId
      conditionConceptId
      conditionStartDate
    }
  }
}

Returns person 1 with all observation and condition details. Replaces multiple REST calls (e.g., /persons/1, /persons/1/observations, /persons/1/conditions) with one precise query.

Result:

{
  "data": {
    "person": {
      "personId": 1,
      "birthDatetime": "1990-01-01T00:00:00",
      "observations": [
        {
          "observationId": 1,
          "observationConceptId": 123,
          "observationDate": "2023-01-01T00:00:00"
        },
        {
          "observationId": 7,
          "observationConceptId": 129,
          "observationDate": "2023-07-10T00:00:00"
        }
      ],
      "conditions": [
        {
          "conditionOccurrenceId": 1,
          "conditionConceptId": 456,
          "conditionStartDate": "2023-02-01T00:00:00"
        },
        {
          "conditionOccurrenceId": 7,
          "conditionConceptId": 462,
          "conditionStartDate": "2023-08-20T00:00:00"
        }
      ]
    }
  }
}

References

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

omop_cdm_graphql-0.4.0.tar.gz (18.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

omop_cdm_graphql-0.4.0-py2.py3-none-any.whl (13.1 kB view details)

Uploaded Python 2Python 3

File details

Details for the file omop_cdm_graphql-0.4.0.tar.gz.

File metadata

  • Download URL: omop_cdm_graphql-0.4.0.tar.gz
  • Upload date:
  • Size: 18.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.10.12

File hashes

Hashes for omop_cdm_graphql-0.4.0.tar.gz
Algorithm Hash digest
SHA256 fda81ec52e7f55ebaaebbde53199dcf941448b0895a99643b295d1050cb9b5bf
MD5 f22fdaa62f6447754b8505dda95d81ab
BLAKE2b-256 c9b7f33fdc3ad763deef7e8850814a3b0e8fc04238ea7558802d4a741e9b90d6

See more details on using hashes here.

File details

Details for the file omop_cdm_graphql-0.4.0-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for omop_cdm_graphql-0.4.0-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 cf09e387849fa37eeb6573a756d6badddaa59015aea78bb546e1fbd2a4386d3b
MD5 a5e3a59f9579a5532351153a0eba9888
BLAKE2b-256 ad6371d4b72ee0155db4d9f75b009ef5e2380f17e9fc243e5fa6d7b891c92253

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page