Has anyone found or created a report that can produce all the interviewers involved per req/per candidate? This is an important data point for our organization that our old system was able to capture and report out.
Solved
Interviewer Reporting
Best answer by dkreiger
This should give you the results (do go through the comments in the query to modify date range):
SELECT
feedback_template_id,
feedback_template_name,
feedback_type,
id,
requester_email,
requester_name,
reviewer_email,
reviewer_name,
profile_id,
position_id,
feedback.question_id,
feedback.label,
feedback.answer,
feedback.other_option,
feedback.comment
FROM
***COMPANY***_profile_feedback fb, fb.feedback_json.feedback as feedback AT index
where
-- We are filtering for only those feedbacks which have been submitted using the condition below
status = 'SUBMITTED'
and feedback_type IN ('quick_feedback','interview_feedback')
-- Change the feedback submitted date here
and created_at >= '2024-01-01'Please let me know if you have further questions.
Sign up
Already have an account? Login
Eightfold SSO - Customers & Employees
Eightfold Customers & Employees: Login/Register HereNOT A CUSTOMER? FILL OUT THE FIELDS BELOW:
Login to the Eightfold Pathfinder Community
No account yet? Create an account
Eightfold SSO - Customers & Employees
Eightfold Customers & Employees: Login/Register HereNOT A CUSTOMER? FILL OUT THE FIELDS BELOW:
Enter your E-mail address. We'll send you an e-mail with instructions to reset your password.
