| Argument | Type | Description |
|---|---|---|
orgLabIdrequired | ID! | ID of the orglab |
query($orgLabId: ID!) { getInhouseDevices(orgLabId: $orgLabId) { id # Add other fields you need }}{ "orgLabId": "1"}query($id: ID!) { labOrder(id: $id) { id # Add other fields you need }}{ "id": "1"}query($patientId: ID!) { labOrders(patientId: $patientId) { id # Add other fields you need }}{ "patientId": "1"}query($id: ID!) { labResult(id: $id) { id # Add other fields you need }}{ "id": "1"}query( $includeAiResults: Boolean, $patientId: ID!) { labResults( includeAiResults: $includeAiResults, patientId: $patientId ) { id # Add other fields you need }}{ "includeAiResults": true, "patientId": "1"}query( $id: ID!, $locationId: ID, $modality: String) { labTests( id: $id, locationId: $locationId, modality: $modality ) { id # Add other fields you need }}{ "id": "1", "locationId": "1", "modality": "example"}query($orgLabId: ID!) { modalities(orgLabId: $orgLabId) { id # Add other fields you need }}{ "orgLabId": "1"}query($id: ID!) { orgLab(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
updatedAtEnd | NaiveDateTime | Updated at end |
updatedAtStart | NaiveDateTime | Updated at start |
query( $updatedAtEnd: NaiveDateTime, $updatedAtStart: NaiveDateTime) { orgLabOrders( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}| Argument | Type | Description |
|---|---|---|
limit | Int | Maximum number of results to return |
offset | Int | Number of results to skip for pagination |
updatedAtEnd | NaiveDateTime | Updated at end |
updatedAtStart | NaiveDateTime | Updated at start |
query( $limit: Int, $offset: Int, $updatedAtEnd: NaiveDateTime, $updatedAtStart: NaiveDateTime) { orgLabResults( limit: $limit, offset: $offset, updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "limit": 1, "offset": 1, "updatedAtEnd": {}, "updatedAtStart": {}}query( $includeVirtual: Boolean, $locationId: ID) { orgLabs( includeVirtual: $includeVirtual, locationId: $locationId ) { id # Add other fields you need }}{ "includeVirtual": true, "locationId": "1"}| Argument | Type | Description |
|---|---|---|
locationIdrequired | ID! | ID of the location |
query($locationId: ID!) { orphanedLabs(locationId: $locationId) { id # Add other fields you need }}{ "locationId": "1"}query($id: ID!) { storedLabTests(id: $id) { id # Add other fields you need }}{ "id": "1"}query( $locationId: ID!, $modality: String!) { upennLabTests( locationId: $locationId, modality: $modality ) { id # Add other fields you need }}{ "locationId": "1", "modality": "example"}