| Argument | Type | Description |
|---|---|---|
clockInrequired | DateTime! | Clock-in timestamp for timesheet |
mutation($clockIn: DateTime!) { clockIn(clockIn: $clockIn) { id # Add other fields you need }}{ "clockIn": {}}mutation( $clockOut: DateTime!, $id: ID!) { clockOut( clockOut: $clockOut, id: $id ) { id # Add other fields you need }}{ "clockOut": {}, "id": "1"}| Argument | Type | Description |
|---|---|---|
inputrequired | ProviderPunchInput! | Input |
mutation($input: ProviderPunchInput!) { createProviderPunch(input: $input) { id # Add other fields you need }}{ "input": {}}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
mutation($id: ID!) { deleteProviderPunch(id: $id) { id # Add other fields you need }}{ "id": "1"}| Argument | Type | Description |
|---|---|---|
idrequired | ID! | Unique identifier |
inputrequired | ProviderPunchInput! | Input |
mutation( $id: ID!, $input: ProviderPunchInput!) { updateProviderPunch( id: $id, input: $input ) { id # Add other fields you need }}{ "id": "1", "input": {}}