- Rough in front end / backend
Signed-off-by: Dave Richer <dave@imexsystems.ca>
This commit is contained in:
@@ -518,6 +518,20 @@ exports.QUERY_PAYMENTS_FOR_EXPORT = `
|
||||
}
|
||||
}`;
|
||||
|
||||
exports.QUERY_TRANSITIONS_BY_JOBID = `query QUERY_TRANSITIONS_BY_JOBID($jobid: uuid!) {
|
||||
transitions(where: {jobid: {_eq: $jobid}}, order_by: {id: asc}) {
|
||||
start
|
||||
end
|
||||
value
|
||||
prev_value
|
||||
next_value
|
||||
duration
|
||||
type
|
||||
created_at
|
||||
updated_at
|
||||
}
|
||||
}`;
|
||||
|
||||
exports.QUERY_UPCOMING_APPOINTMENTS = `query QUERY_UPCOMING_APPOINTMENTS($now: timestamptz!, $jobId: uuid!) {
|
||||
jobs_by_pk(id: $jobId) {
|
||||
bodyshop {
|
||||
|
||||
Reference in New Issue
Block a user