Scheduling bug fixes. IO-153
This commit is contained in:
@@ -54,6 +54,25 @@ export const QUERY_ALL_ACTIVE_APPOINTMENTS = gql`
|
||||
}
|
||||
`;
|
||||
|
||||
|
||||
export const INSERT_APPOINTMENT_BLOCK = gql`
|
||||
mutation INSERT_APPOINTMENT_BLOCK(
|
||||
$app: [appointments_insert_input!]!
|
||||
) {
|
||||
insert_appointments(objects: $app) {
|
||||
returning {
|
||||
id
|
||||
start
|
||||
end
|
||||
arrived
|
||||
title
|
||||
isintake
|
||||
block
|
||||
}
|
||||
}
|
||||
}
|
||||
`;
|
||||
|
||||
export const INSERT_APPOINTMENT = gql`
|
||||
mutation INSERT_APPOINTMENT(
|
||||
$app: [appointments_insert_input!]!
|
||||
|
||||
Reference in New Issue
Block a user