When to use this
Show recruiters all interviews for a specific position (e.g., everything currently to evaluate or all finalist interviews). This is useful for building position detail pages, queues, or status dashboards in your app.GraphQL Request
Make sure to replace the position(id) with your ID. The example below fetches interviews in theto_evaluate stage. If you want to fetch all interviews for a position, don’t include the status filter.
In Hireflix, interviews move through four possible stages:
pending→ candidate has not answered yet (pending interview invite)to_evaluate→ candidate has completed the interview, waiting for recruiter reviewshortlisted→ candidate has been marked as shortlisteddiscarded→ candidate has been marked as discarded
Explanation
- position(id) – the position whose interviews you want to list (learn how to fetch positions).
- pagination.limit – max number of interviews to return in this call.
- pagination.lastCursor - a pointer to the next page of results (useful if there are more than limit interviews).
The API always returns a
lastCursor. When the results array comes back empty, it means you’ve reached the end and there are no more records to fetch.- filter.status.equal – filter by a single status (e.g.,
to_evaluate). Other statuses includediscarded,pending, orshortlisted. - sort.field:createdAt(DESC) - order results by creation time, newest first.
- candidate.fullName / email – basic candidate info for rendering a table or list.
Other Filter Options
- filter.email.equal / regex - Find an exact email match.
- filter.lastName.equal / regex - Find an exact or regex match by last name.
- filter.score.greaterThan / lessThan - Filter by score (also supports
equal,greaterThanOrEqual,lessThanOrEqual,notEqual).
Example Response
Pagination
Always request thelastCursor field, as it lets you fetch results beyond the current page size.
- On your first response, you’ll always get a
lastCursortoken. - Pass this token into the next request’s
pagination.lastCursorfield to fetch the following page. - Even if there are no more results, the API will still return a
lastCursor. To know you’ve reached the end, you must make one more request with the latestlastCursor. If that request comes back with an **empty **resultsarray , there are no more records to fetch.
Advanced Filtering
Thefilter input supports combining multiple conditions using AND and OR. This allows you to build more precise searches. For example, you might want to:
- Match candidates by email, first name, or last name (using
OR). - At the same time, restrict results to interviews that are still
to_evaluate(usingAND).
to_evaluate stage.
Rule of thumb:
- Use
ORalone for simple “either/or” matching. - Wrap it in
ANDwhen you want to combine multiple logical groups.
Learn next?
Let’s learn how to fetch results for an interview.

