Update assigned_to handling on front end & debug task assignment.
This commit is contained in:
@@ -2411,6 +2411,10 @@ exports.QUERY_REMIND_TASKS = `
|
||||
due_date
|
||||
created_by
|
||||
assigned_to
|
||||
assigned_to_employee {
|
||||
id
|
||||
user_email
|
||||
}
|
||||
remind_at
|
||||
remind_at_sent
|
||||
priority
|
||||
@@ -2428,3 +2432,13 @@ exports.UPDATE_TASKS_REMIND_AT_SENT = `mutation UPDATE_TASK_REMIND_AT_SENT($task
|
||||
affected_rows
|
||||
}
|
||||
}`;
|
||||
|
||||
exports.QUERY_EMPLOYEE_EMAIL_BY_ID = `
|
||||
query QUERY_EMPLOYEE_EMAIL_BY_ID($id: uuid!) {
|
||||
employees_by_pk(id: $id) {
|
||||
id
|
||||
user_email
|
||||
}
|
||||
}
|
||||
|
||||
`;
|
||||
|
||||
Reference in New Issue
Block a user