Added block calendar day for BOD-94

This commit is contained in:
Patrick Fic
2020-06-25 13:36:11 -07:00
parent 2e30a9078e
commit 7305994a05
20 changed files with 392 additions and 65 deletions

View File

@@ -18,6 +18,7 @@ export const QUERY_ALL_ACTIVE_APPOINTMENTS = gql`
arrived
title
isintake
block
job {
ro_number
ownr_ln
@@ -42,6 +43,12 @@ export const INSERT_APPOINTMENT = gql`
insert_appointments(objects: $app) {
returning {
id
start
end
arrived
title
isintake
block
}
}
}
@@ -85,6 +92,7 @@ export const CANCEL_APPOINTMENT_BY_ID = gql`
) {
returning {
id
canceled
}
}
}