query($id: ID!) { alert(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) { alerts( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}query( $locationId: ID, $patientId: ID) { cages( locationId: $locationId, patientId: $patientId ) { id # Add other fields you need }}{ "locationId": "1", "patientId": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { clientReferralSource(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) { clientReferralSources( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}The `should_convert_urls_to_a_tags` is a boolean flag that determines whether URLs should be converted into clickable links by adding an <a> tag with the CSS class `vespire-consent-form-link`.
query( $id: ID!, $shouldConvertUrlsToATags: Boolean) { consentForm( id: $id, shouldConvertUrlsToATags: $shouldConvertUrlsToATags ) { id # Add other fields you need }}{ "id": "1", "shouldConvertUrlsToATags": true}| Argument | Type | Description |
|---|---|---|
onlyEnabled | Boolean | Return only enabled items |
query($onlyEnabled: Boolean) { consentForms(onlyEnabled: $onlyEnabled) { id # Add other fields you need }}{ "onlyEnabled": true}| Argument | Type | Description |
|---|---|---|
locationIdrequired | ID! | ID of the location |
query($locationId: ID!) { departments(locationId: $locationId) { id # Add other fields you need }}{ "locationId": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { encounterType(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) { entityValidations( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}query { fileFolders { id # Add other fields you need }}query( $pageToken: String, $path: String!) { files( pageToken: $pageToken, path: $path ) { id # Add other fields you need }}{ "pageToken": "example", "path": "example"}query( $date: Date!, $locationId: ID!) { isDaycareOpen( date: $date, locationId: $locationId ) { id # Add other fields you need }}{ "date": {}, "locationId": "1"}query { legalEntities { id # Add other fields you need }}Lookup a location by id (defaults to latest added)
| Argument | Type | Description |
|---|---|---|
id | ID | Unique identifier |
query($id: ID) { location(id: $id) { id # Add other fields you need }}{ "id": "1"}query( $limit: Int, $locationId: ID!, $offset: Int) { locationChatMessages( limit: $limit, locationId: $locationId, offset: $offset ) { id # Add other fields you need }}{ "limit": 1, "locationId": "1", "offset": 1}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | ID of resource to lookup |
query($id: ID!) { locationTag(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) { locationTags( updatedAtEnd: $updatedAtEnd, updatedAtStart: $updatedAtStart ) { id # Add other fields you need }}{ "updatedAtEnd": {}, "updatedAtStart": {}}| Argument | Type | Description |
|---|---|---|
filters | LocationFilters | Filters |
limit | Int | Maximum number of results to return |
offset | Int | Number of results to skip for pagination |
viewerAssignedOnly | Boolean | Viewer assigned only |
query( $filters: LocationFilters, $limit: Int, $offset: Int, $viewerAssignedOnly: Boolean) { locations( filters: $filters, limit: $limit, offset: $offset, viewerAssignedOnly: $viewerAssignedOnly ) { id # Add other fields you need }}{ "filters": {}, "limit": 1, "offset": 1, "viewerAssignedOnly": true}| Argument | Type | Description |
|---|---|---|
locationIds | [ID] | List of location IDs |
query($locationIds: [ID]) { locationsDepartments(locationIds: $locationIds) { id # Add other fields you need }}{ "locationIds": "1"}Lookup an org (defaults to viewer's)
query { org { id # Add other fields you need }}query { orgDepartments { id # Add other fields you need }}query( $locationIds: [ID], $providerId: ID!) { providerDepartments( locationIds: $locationIds, providerId: $providerId ) { id # Add other fields you need }}{ "locationIds": "1", "providerId": "1"}| Argument | Type | Description |
|---|---|---|
namerequired | String! | Name of the resource |
query($name: String!) { searchLocationTags(name: $name) { id # Add other fields you need }}{ "name": "example"}Search for the computers associated with PrintNode account
query { searchPrintnodeComputers { id # Add other fields you need }}Search for the printers associated with PrintNode account
| Argument | Type | Description |
|---|---|---|
locationIdrequired | ID! | ID of the location |
query($locationId: ID!) { searchPrintnodePrinters(locationId: $locationId) { id # Add other fields you need }}{ "locationId": "1"}