mutation( $boardGroupId: ID, $locationId: ID!, $patientId: ID!) { addPatientToBoard( boardGroupId: $boardGroupId, locationId: $locationId, patientId: $patientId ) { id # Add other fields you need }}{ "boardGroupId": "1", "locationId": "1", "patientId": "1"}mutation($id: ID!) { completeBoardCell(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
input | BoardCellInput | Input data for board cell operation |
mutation($input: BoardCellInput) { createBoardCell(input: $input) { id # Add other fields you need }}{ "input": {}}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
mutation($id: ID!) { deleteBoardCell(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
boardRowIdrequired | ID! | ID of the boarding row |
mutation($boardRowId: ID!) { invoiceBoardRow(boardRowId: $boardRowId) { id # Add other fields you need }}{ "boardRowId": "1"}| Argument | Type | Description |
|---|---|---|
estimateIdrequired | ID! | ID of the estimate |
mutation($estimateId: ID!) { promoteEstimateToBoard(estimateId: $estimateId) { id # Add other fields you need }}{ "estimateId": "1"}mutation($id: ID!) { uncompleteBoardCell(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | BoardCellInput! | Input |
mutation( $id: ID!, $input: BoardCellInput!) { updateBoardCell( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | BoardRowInput! | Input |
mutation( $id: ID!, $input: BoardRowInput!) { updateBoardRow( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}