Lookup an rdvms contacts
| Argument | Type | Description |
|---|---|---|
rdvmId | ID | ID of the rdvm |
query($rdvmId: ID) { contacts(rdvmId: $rdvmId) { id # Add other fields you need }}{ "rdvmId": "1"}query( $limit: Int, $rdvmId: ID!) { getRdvmRecentPatients( limit: $limit, rdvmId: $rdvmId ) { id # Add other fields you need }}{ "limit": 1, "rdvmId": "1"}query($id: ID) { rdvm(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { rdvmContact(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { rdvmDocument(id: $id) { id # Add other fields you need }}{ "id": "1"}| 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) { rdvms( limit: $limit, offset: $offset, updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "limit": 1, "offset": 1, "updatedAtEnd": {}, "updatedAtStart": {}}query( $includeLocationsUnassigned: Boolean, $locationIds: [ID], $primaryLocationId: ID, $term: String) { rdvmsCount( includeLocationsUnassigned: $includeLocationsUnassigned, locationIds: $locationIds, primaryLocationId: $primaryLocationId, term: $term ) { id # Add other fields you need }}{ "includeLocationsUnassigned": true, "locationIds": "1", "primaryLocationId": "1", "term": "example"}| Argument | Type | Description |
|---|---|---|
includeLocationsUnassigned | Boolean | Include locations unassigned |
isActive | Boolean | Is active |
limit | Int | Maximum number of results to return |
locationIds | [ID] | List of location IDs |
offset | Int | Number of results to skip for pagination |
primaryLocationId | ID | ID of the primarylocation |
term | String | Term |
query( $includeLocationsUnassigned: Boolean, $isActive: Boolean, $limit: Int, $locationIds: [ID], $offset: Int, $primaryLocationId: ID, $term: String) { searchRdvms( includeLocationsUnassigned: $includeLocationsUnassigned, isActive: $isActive, limit: $limit, locationIds: $locationIds, offset: $offset, primaryLocationId: $primaryLocationId, term: $term ) { id # Add other fields you need }}{ "includeLocationsUnassigned": true, "isActive": true, "limit": 1, "locationIds": "1", "offset": 1, "primaryLocationId": "1", "term": "example"}query( $limit: Int, $offset: Int, $rdvmId: ID) { visits( limit: $limit, offset: $offset, rdvmId: $rdvmId ) { id # Add other fields you need }}{ "limit": 1, "offset": 1, "rdvmId": "1"}Counts total visits for this rDVM
| Argument | Type | Description |
|---|---|---|
rdvmId | ID | ID of the rdvm |
query($rdvmId: ID) { visitsCount(rdvmId: $rdvmId) { id # Add other fields you need }}{ "rdvmId": "1"}